summaryrefslogtreecommitdiffstats
path: root/ship/deploy
diff options
context:
space:
mode:
authorlassulus <lassulus@googlemail.com>2013-11-05 19:51:22 +0100
committerlassulus <lassulus@googlemail.com>2013-11-05 19:51:22 +0100
commit241f13cd2880c97b9d3503725a0720a017779ed6 (patch)
tree6b2c1749fe9ad65913605f21d8338ee261d7d6f2 /ship/deploy
parentff67c4b7215358cf785c058201328ff6a0f5fc2b (diff)
parent840bc4e535371865173dd31bc509314899b4b33f (diff)
Merge branch 'master' of github.com:krebscode/painload
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
-