Files
dokku/plugins/git/git-has-code
Jose Diaz-Gonzalez 1b6861cdbb feat: add plugin trigger for checking if an app has code
This will allow us to short-circuit build processes that would otherwise be triggered due to various commands in Dokku.
2022-04-16 01:40:22 -04:00

19 lines
395 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-has-code() {
declare desc="checks if there is code at a specific branch"
declare trigger="git-has-code"
declare APP="$1" BRANCH_NAME="$2"
if fn-git-has-code "$APP" "$BRANCH_NAME"; then
return 0
fi
return 1
}
trigger-git-git-has-code "$@"