mirror of
https://github.com/20kdc/OC-KittenOS.git
synced 2024-11-08 11:38:07 +11:00
12 lines
387 B
Bash
12 lines
387 B
Bash
|
#!/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
|