diff options
author | lassulus <lassulus@googlemail.com> | 2013-11-05 19:51:22 +0100 |
---|---|---|
committer | lassulus <lassulus@googlemail.com> | 2013-11-05 19:51:22 +0100 |
commit | 241f13cd2880c97b9d3503725a0720a017779ed6 (patch) | |
tree | 6b2c1749fe9ad65913605f21d8338ee261d7d6f2 /ship/deploy | |
parent | ff67c4b7215358cf785c058201328ff6a0f5fc2b (diff) | |
parent | 840bc4e535371865173dd31bc509314899b4b33f (diff) |
Merge branch 'master' of github.com:krebscode/painload
Diffstat (limited to 'ship/deploy')
-rwxr-xr-x | ship/deploy | 6 |
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 - |