Files
dokku/plugins/apps/subcommands/exists
2020-02-10 01:40:30 -05:00

19 lines
387 B
Bash
Executable File

#!/usr/bin/env bash
set -eo pipefail
[[ $DOKKU_TRACE ]] && set -x
source "$PLUGIN_AVAILABLE_PATH/apps/functions"
cmd-apps-exist() {
declare desc="checks if an app exists"
declare cmd="apps:exists"
[[ "$1" == "$cmd" ]] && shift 1
declare APP="$1"
if ! apps_exists "$APP"; then
dokku_log_fail "App does not exist"
fi
dokku_log_info1 "App exists"
}
cmd-apps-exist "$@"