Remove shift from install-nginx-attachment.sh

Shift is unecessary here, since we are already picking the first argument (i.e. $1 instead of $0, which would be the command).
This commit is contained in:
superpuffin 2023-10-10 10:11:42 +02:00 committed by GitHub
parent 82953f5d4d
commit aa7596bad8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -114,7 +114,6 @@ if [ "$(id -u)" != "0" ]; then
exit 1
fi
shift
run "${@}"
exit 0