diff options
author | Daniel Freedman <compismyrx@gmail.com> | 2012-05-18 16:06:53 -0700 |
---|---|---|
committer | Daniel Freedman <compismyrx@gmail.com> | 2012-05-18 16:06:53 -0700 |
commit | 7dde385011ffc7c3a4ae0be73a44bff268ee3b1c (patch) | |
tree | 30fc97547d18e6b013d39b96a90870bd960beaa7 | |
parent | 721e126d0d7d8226326ed8543503de8f50a98191 (diff) | |
download | biblez-ng-7dde385011ffc7c3a4ae0be73a44bff268ee3b1c.tar.gz |
Remove extraneous mkdir call
-rwxr-xr-x | tools/deploy.sh | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tools/deploy.sh b/tools/deploy.sh index 4f4d07e..ae0366d 100755 --- a/tools/deploy.sh +++ b/tools/deploy.sh @@ -38,7 +38,7 @@ copy step EOF # make deploy folder -mkdir -p "$TARGET" +mkdir -p "$TARGET/lib" # copy root folder files cp "$SOURCE/index.html" "$SOURCE/icon.png" "$TARGET" @@ -46,9 +46,6 @@ cp "$SOURCE/index.html" "$SOURCE/icon.png" "$TARGET" # copy assets and build cp -r "$SOURCE/assets" "$SOURCE/build" "$TARGET" -# copy library items -mkdir "$TARGET/lib" - for i in $SOURCE/lib/*; do o=${i##*/} if [ -x $i/deploy.sh ]; then |