From 25fea862a7c0a792e7e188cff2d6b3d93ecafd49 Mon Sep 17 00:00:00 2001 From: mathias Date: Sun, 10 Jun 2018 02:49:04 +0300 Subject: [PATCH] mkdir is needed --- bin/compile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bin/compile b/bin/compile index c2f260d..3b15d35 100755 --- a/bin/compile +++ b/bin/compile @@ -2,8 +2,9 @@ BIN_DIR="$(cd "$(dirname "$0")" && pwd)" BUILD_DIR=$1 -cp $BIN_DIR/start $BUILD_DIR/bin/ -cp $BIN_DIR/excludes $BUILD_DIR/bin/ +mkdir -p $BUILD_DIR/bin/ +mv $BIN_DIR/start $BUILD_DIR/bin/ +mv $BIN_DIR/excludes $BUILD_DIR/bin/ curl -o inotify-tools.deb -s -L "http://security.ubuntu.com/ubuntu/pool/universe/i/inotify-tools/inotify-tools_3.14-2_amd64.deb" dpkg -x *.deb .