]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - scripts/update.sh
Properly source require.sh
[github/wallabag/wallabag.git] / scripts / update.sh
index e86a76db4729cd722cc26051a6e3a84e69b5f7a1..3ef1043920d3157f76b21f312037047320a91147 100755 (executable)
@@ -28,10 +28,14 @@ set -e
 set -u
 
 COMPOSER_COMMAND='composer'
+REQUIRE_FILE='scripts/require.sh'
 
-DIR="${BASH_SOURCE}"
-if [ ! -d "$DIR" ]; then DIR="$PWD/scripts"; fi
-. "$DIR/require.sh"
+if [ ! -f "$REQUIRE_FILE" ]; then
+  echo "Cannot find $REQUIRE_FILE"
+  exit 1
+fi
+
+. "$REQUIRE_FILE"
 
 rm -rf var/cache/*
 git fetch origin