When parsing args when handling verbs, appname can be included as an argument causing bugs with commands that accept a verb, appname, and also arguments.

This commit is contained in:
Rocky Madden
2015-05-22 18:21:54 -06:00
parent 3bf68616ad
commit 587de65441

View File

@@ -102,6 +102,11 @@ if [[ ! -z $DOKKU_HOST ]]; then
if [[ ! "$1" =~ --* ]]; then
verb=$1
shift
if [[ "$1" == "$appname" ]]; then
shift
fi
args="$*"
else
long_args="--"