mirror of
https://github.com/dokku/dokku.git
synced 2026-02-24 04:00:36 +01:00
Remove use of dokku binary from git plugin
This commit is contained in:
committed by
Michael Hobbs
parent
946756bd43
commit
2cb20f3fd0
@@ -1,18 +1,20 @@
|
||||
#!/usr/bin/env bash
|
||||
set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x
|
||||
source "$PLUGIN_CORE_AVAILABLE_PATH/common/functions"
|
||||
source "$PLUGIN_AVAILABLE_PATH/git/functions"
|
||||
|
||||
git_receive_app(){
|
||||
git_receive_app() {
|
||||
declare desc="git receive-app plugin trigger"
|
||||
local trigger="git_receive_app"
|
||||
local APP="$1"; local REV="$2"
|
||||
local cmd="git-build"
|
||||
|
||||
# Don't trigger git build if there is no git repository.
|
||||
if [[ ! -d "$DOKKU_ROOT/$APP/refs" ]]; then
|
||||
true
|
||||
else
|
||||
# shellcheck disable=SC2086
|
||||
dokku git-build $APP $REV
|
||||
git_build_cmd $cmd $APP $REV
|
||||
fi
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user