mirror of
https://github.com/dokku/dokku.git
synced 2025-12-16 20:17:44 +01:00
20 lines
419 B
Bash
Executable File
20 lines
419 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eo pipefail
|
|
source "$PLUGIN_AVAILABLE_PATH/git/internal-functions"
|
|
[[ $DOKKU_TRACE ]] && set -x
|
|
|
|
trigger-git-git-get-property() {
|
|
declare desc="return the value for an app's git property"
|
|
declare trigger="git-get-property"
|
|
declare APP="$1" KEY="$2"
|
|
|
|
if [[ "$KEY" == "source-image" ]]; then
|
|
fn-git-source-image "$APP"
|
|
return
|
|
fi
|
|
|
|
return 1
|
|
}
|
|
|
|
trigger-git-git-get-property "$@"
|