This commit is contained in:
Heavybullets8 2022-06-13 14:53:01 -06:00
parent d39634b39f
commit 4c9ee5de13

View File

@ -4,7 +4,8 @@
[[ -z "$*" || "-" == "$*" || "--" == "$*" ]] && echo "This script requires an argument, use --help for help" && exit [[ -z "$*" || "-" == "$*" || "--" == "$*" ]] && echo "This script requires an argument, use --help for help" && exit
ARGS=( "$@" )
ARGS="$@" ; echo "$ARGS" | sed -e 's/\s?\-\-self\-update\s?//'
SCRIPT=$(readlink -f "$0") SCRIPT=$(readlink -f "$0")
SCRIPTPATH=$(dirname "$SCRIPT") SCRIPTPATH=$(dirname "$SCRIPT")
SCRIPTNAME="$0" SCRIPTNAME="$0"
@ -21,7 +22,7 @@ git fetch
git checkout $BRANCH git checkout $BRANCH
git pull --force git pull --force
echo "Running the new version..." echo "Running the new version..."
exec bash "$SCRIPTNAME" "${ARGS[@]/\s?\-\-self\-update\s?}" exec bash "$SCRIPTNAME" "${ARGS[@]}"
# Now exit this old instance # Now exit this old instance
exit 1 exit 1