[CI-SKIP] pop $1 off before passing args to upcommit

args is suppose to be an OPTIONAL message override, but the command itself was being passed
This commit is contained in:
Aikar 2018-08-06 23:24:38 -04:00
parent a96460a635
commit e4dcd5359a
No known key found for this signature in database
GPG Key ID: 401ADFC9891FAAFE
1 changed files with 1 additions and 0 deletions

1
paper
View File

@ -85,6 +85,7 @@ case "$1" in
"cu" | "commitup" | "commitupstream" | "upcommit" | "upstreamcommit")
(
cd "$basedir"
shift
scripts/upstreamCommit.sh "$@"
)
;;