chore: unify error output when an app is not declared

This commit is contained in:
Jose Diaz-Gonzalez
2017-03-12 21:26:19 -06:00
parent 7bbad9f074
commit 2bcad2014b
5 changed files with 6 additions and 6 deletions

View File

@@ -6,7 +6,7 @@ storage_list_cmd() {
declare desc="List all bound mounts"
local cmd="storage:list"
local passed_phases="deploy"
[[ ! $2 ]] && dokku_log_fail "storage:list requires an app to list."
[[ -z $2 ]] && dokku_log_fail "Please specify an app to run the command on"
verify_app_name "$2" && local APP="$2"
echo "$APP volume bind-mounts:"
get_bind_mounts "$(get_phase_file_path "$passed_phases")"