mirror of
https://github.com/dokku/dokku.git
synced 2026-02-24 04:00:36 +01:00
24 lines
566 B
Bash
Executable File
24 lines
566 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eo pipefail
|
|
[[ $DOKKU_TRACE ]] && set -x
|
|
source "$PLUGIN_CORE_AVAILABLE_PATH/common/functions"
|
|
source "$PLUGIN_AVAILABLE_PATH/apps/internal-functions"
|
|
|
|
cmd-apps-locked() {
|
|
declare desc="checks if an app is locked for deployment"
|
|
declare cmd="apps:locked"
|
|
[[ "$1" == "$cmd" ]] && shift 1
|
|
declare APP="$1"
|
|
|
|
verify_app_name "$APP"
|
|
local LOCKED="$(apps_is_locked "$APP")"
|
|
|
|
if [[ "$LOCKED" != "true" ]]; then
|
|
dokku_log_fail_quiet "Deploy lock does not exist"
|
|
fi
|
|
|
|
dokku_log_quiet "Deploy lock exists"
|
|
}
|
|
|
|
cmd-apps-locked "$@"
|