commit 3ac9a0b955ba1f52a3457f014055b4babc7cc5e4
parent cb15832253e0f4830e694c15693e7cfefa749a2d
Author: Andreas Guldstrand <andreas.guldstrand@gmail.com>
Date: Wed, 16 Dec 2015 20:04:13 +0100
Fix missed ; in package_up.sh
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/package_up.sh b/tools/package_up.sh
@@ -33,7 +33,7 @@ for i in $(ls $PKG_HOME); do
cp -R $PKG_HOME/$i $PKG_DIR
done
-for remove in t tools README.md TODO do
+for remove in t tools README.md TODO; do
if [[ -e $PKG_DIR/$remove ]]; then
rm -rf $PKG_DIR/$remove
fi