diff options
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 - |