fix: skip following argument when current argument is --app

This commit is contained in:
Jose Diaz-Gonzalez
2017-01-09 02:12:18 -07:00
parent e107c19dbf
commit 9272e40178

4
dokku
View File

@@ -35,10 +35,12 @@ source "$PLUGIN_CORE_AVAILABLE_PATH/common/functions"
parse_args "$@"
args=("$@")
skip_arg=false
if [[ "${args[0]}" =~ ^--.* ]]; then
for arg in "$@"; do
$skip_arg && skip_arg=false && continue
if [[ "$arg" == "--app" ]]; then
shift 2
shift 2 && skip_arg=true
elif [[ "$arg" =~ ^--.* ]]; then
shift 1
else