remove self update form args

This commit is contained in:
Heavybullets8 2022-06-13 14:11:51 -06:00
parent bb4edf6bf1
commit 151b37947b

View File

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