summaryrefslogtreecommitdiffstats
path: root/ship/deploy
diff options
context:
space:
mode:
authortv <tv@nomic.retiolum>2013-11-05 19:34:23 +0100
committertv <tv@nomic.retiolum>2013-11-05 19:34:23 +0100
commitb676ca6e2f030622333e6f42ccd4ecfe90efb0ad (patch)
tree5b24da68d1c6ab161dfb4999dd5ac9d6f866058b /ship/deploy
parent5e326f51c58e500285ea3daee91986ee1ea518eb (diff)
ship build: initial commit
Diffstat (limited to 'ship/deploy')
-rwxr-xr-xship/deploy6
1 files changed, 1 insertions, 5 deletions
diff --git a/ship/deploy b/ship/deploy
index 5c282398..0f3e5219 100755
--- a/ship/deploy
+++ b/ship/deploy
@@ -4,11 +4,7 @@ cd $(dirname $0)
bindir=$PWD/bin/
libdir=$PWD/lib/
outdir=$PWD/out/
-# Hill-Billy style package builder
for file in `ls -1 $bindir`;do
- # cat every lib and the file itself afterwards into outfile
- find $libdir -type f -exec cat '{}' \; > $outdir/$file
- cat $bindir/$file >> $outdir/$file
+ BUILD_PATH=$libdir ./build compile bin/$file out/$file
chmod 755 $outdir/$file
done
-