mirror of
https://github.com/dokku/dokku.git
synced 2025-12-16 12:07:45 +01:00
15 lines
332 B
Bash
Executable File
15 lines
332 B
Bash
Executable File
#!/usr/bin/env bash
|
|
source "$PLUGIN_AVAILABLE_PATH/git/internal-functions"
|
|
set -eo pipefail
|
|
[[ $DOKKU_TRACE ]] && set -x
|
|
|
|
trigger-git-git-deploy-branch() {
|
|
declare desc="git deploy-branch plugin trigger"
|
|
declare trigger="git-deploy-branch"
|
|
declare APP="$1"
|
|
|
|
fn-git-deploy-branch "$APP"
|
|
}
|
|
|
|
trigger-git-git-deploy-branch "$@"
|