diff options
Diffstat (limited to 'scripts/update.sh')
-rwxr-xr-x | scripts/update.sh | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/scripts/update.sh b/scripts/update.sh index c62d104a..e86a76db 100755 --- a/scripts/update.sh +++ b/scripts/update.sh | |||
@@ -5,9 +5,17 @@ | |||
5 | IGNORE_ROOT_ARG="--ignore-root-warning" | 5 | IGNORE_ROOT_ARG="--ignore-root-warning" |
6 | IGNORE_ROOT=0 | 6 | IGNORE_ROOT=0 |
7 | 7 | ||
8 | if [ "$1" == "$IGNORE_ROOT_ARG" ]; then | 8 | while :; do |
9 | IGNORE_ROOT=1 | 9 | case $1 in |
10 | fi | 10 | $IGNORE_ROOT_ARG) IGNORE_ROOT=1 |
11 | ;; | ||
12 | *[a-zA-Z]) ENV=$1 | ||
13 | ;; | ||
14 | *) break | ||
15 | ;; | ||
16 | esac | ||
17 | shift | ||
18 | done | ||
11 | 19 | ||
12 | # Abort running this script if root | 20 | # Abort running this script if root |
13 | if [ "$IGNORE_ROOT" -eq 0 ] && [ "$EUID" == "0" ]; then | 21 | if [ "$IGNORE_ROOT" -eq 0 ] && [ "$EUID" == "0" ]; then |
@@ -25,8 +33,6 @@ DIR="${BASH_SOURCE}" | |||
25 | if [ ! -d "$DIR" ]; then DIR="$PWD/scripts"; fi | 33 | if [ ! -d "$DIR" ]; then DIR="$PWD/scripts"; fi |
26 | . "$DIR/require.sh" | 34 | . "$DIR/require.sh" |
27 | 35 | ||
28 | ENV=$1 | ||
29 | |||
30 | rm -rf var/cache/* | 36 | rm -rf var/cache/* |
31 | git fetch origin | 37 | git fetch origin |
32 | git fetch --tags | 38 | git fetch --tags |