mirror of
https://github.com/20kdc/OC-KittenOS.git
synced 2024-12-03 23:58:08 +11:00
Work out how future development is going to work
This commit is contained in:
parent
75e043f14f
commit
7092b41f78
3
.gitignore
vendored
3
.gitignore
vendored
@ -21,7 +21,10 @@ repobuild/*/*/
|
|||||||
repobuild/*/*/*
|
repobuild/*/*/*
|
||||||
|
|
||||||
inst.lua
|
inst.lua
|
||||||
|
# Available as the respective release
|
||||||
|
inst-gold.lua
|
||||||
com2/code.tar.bd
|
com2/code.tar.bd
|
||||||
upldr.sh
|
upldr.sh
|
||||||
upldr-dev.sh
|
upldr-dev.sh
|
||||||
|
upldr-gold.sh
|
||||||
repository/inst.lua
|
repository/inst.lua
|
||||||
|
@ -136,3 +136,8 @@ Secondly, for a compressed installer, you use `package.sh`.
|
|||||||
|
|
||||||
That rebuilds `code.tar` and `inst.lua`, and also prepares the final structure of the repository to upload.
|
That rebuilds `code.tar` and `inst.lua`, and also prepares the final structure of the repository to upload.
|
||||||
|
|
||||||
|
NOTE! Future OS changes after r2 will be kept in a "future" branch.
|
||||||
|
|
||||||
|
The "future" branch gets rebased onto master and then recreated.
|
||||||
|
|
||||||
|
So expect that.
|
||||||
|
11
package-gold.sh
Executable file
11
package-gold.sh
Executable file
@ -0,0 +1,11 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# This is released into the public domain.
|
||||||
|
# No warranty is provided, implied or otherwise.
|
||||||
|
|
||||||
|
stat repobuild/data/app-claw/local.lua && rm -rf repobuild
|
||||||
|
mkdir repobuild
|
||||||
|
cp -r code/* repobuild/
|
||||||
|
cp -r repository/* repobuild/
|
||||||
|
cp inst-gold.lua repobuild/inst.lua
|
||||||
|
lua clawmerge.lua repository/data/app-claw/local.lua code/data/app-claw/local.lua > repobuild/data/app-claw/local.lua
|
Loading…
Reference in New Issue
Block a user