X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=scripts%2Finstall.sh;h=de1fb8f650b57bf21a1baa67f990ff3f3ae6d6dc;hb=c01bda038e84156ffcd8cdc21025e7f3f3892fcf;hp=8b7ea03f5fe77030abafbde6d852e5d425da0384;hpb=b1992b340e21b6846a1ec2ae6ddd7217f3b24fb5;p=github%2Fwallabag%2Fwallabag.git diff --git a/scripts/install.sh b/scripts/install.sh index 8b7ea03f..de1fb8f6 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -5,9 +5,17 @@ IGNORE_ROOT_ARG="--ignore-root-warning" IGNORE_ROOT=0 -if [ "$1" == "$IGNORE_ROOT_ARG" ]; then - IGNORE_ROOT=1 -fi +while :; do + case $1 in + $IGNORE_ROOT_ARG) IGNORE_ROOT=1 + ;; + *[a-zA-Z]) ENV=$1 + ;; + *) break + ;; + esac + shift +done # Abort running this script if root if [ "$IGNORE_ROOT" -eq 0 ] && [ "$EUID" == "0" ]; then @@ -22,7 +30,6 @@ DIR="${BASH_SOURCE}" if [ ! -d "$DIR" ]; then DIR="$PWD/scripts"; fi . "$DIR/require.sh" -ENV=$1 TAG=$(git describe --tags $(git rev-list --tags --max-count=1)) git checkout $TAG