From 980e7d1650cbba270f80dd22380149c720055953 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Wed, 10 Oct 2018 03:00:22 -0400 Subject: [PATCH] fix: correct name for upgrade flags in help output --- subcommands/upgrade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subcommands/upgrade b/subcommands/upgrade index 8f3cd62..72fcf5d 100755 --- a/subcommands/upgrade +++ b/subcommands/upgrade @@ -13,7 +13,7 @@ service-upgrade-cmd() { #F -i|--image-version IMAGE_VERSION, the image version to start the service with declare desc="upgrade service to the specified versions" local cmd="$PLUGIN_COMMAND_PREFIX:upgrade" argv=("$@"); [[ ${argv[0]} == "$cmd" ]] && shift 1 - declare SERVICE="$1" CLONE_FLAGS_LIST="${@:2}" + declare SERVICE="$1" UPGRADE_FLAG_LIST="${@:2}" [[ -z "$SERVICE" ]] && dokku_log_fail "Please specify a name for the service" verify_service_name "$SERVICE"