aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/update.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/update.sh')
-rwxr-xr-xscripts/update.sh10
1 files changed, 7 insertions, 3 deletions
diff --git a/scripts/update.sh b/scripts/update.sh
index e86a76db..3ef10439 100755
--- a/scripts/update.sh
+++ b/scripts/update.sh
@@ -28,10 +28,14 @@ set -e
28set -u 28set -u
29 29
30COMPOSER_COMMAND='composer' 30COMPOSER_COMMAND='composer'
31REQUIRE_FILE='scripts/require.sh'
31 32
32DIR="${BASH_SOURCE}" 33if [ ! -f "$REQUIRE_FILE" ]; then
33if [ ! -d "$DIR" ]; then DIR="$PWD/scripts"; fi 34 echo "Cannot find $REQUIRE_FILE"
34. "$DIR/require.sh" 35 exit 1
36fi
37
38. "$REQUIRE_FILE"
35 39
36rm -rf var/cache/* 40rm -rf var/cache/*
37git fetch origin 41git fetch origin