mirror of
https://github.com/20kdc/OC-KittenOS.git
synced 2024-11-08 11:38:07 +11:00
ccb9c3b279
Hopefully this'll finally end the "CLAW runs out of memory an awful lot" problem.
13 lines
478 B
Bash
Executable File
13 lines
478 B
Bash
Executable File
#!/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 claw/clawconv.lua repobuild/data/app-claw/ < claw/code-claw.lua > repobuild/data/app-claw/local.c2l
|
|
lua claw/clawconv.lua repobuild/data/app-claw/ < claw/repo-claw.lua >> repobuild/data/app-claw/local.c2l
|