mirror of
https://github.com/dokku/dokku.git
synced 2025-12-16 20:17:44 +01:00
15 lines
303 B
Bash
Executable File
15 lines
303 B
Bash
Executable File
#!/usr/bin/env bash
|
|
source "$PLUGIN_AVAILABLE_PATH/git/functions"
|
|
set -eo pipefail
|
|
[[ $DOKKU_TRACE ]] && set -x
|
|
|
|
trigger-git-receive-app() {
|
|
declare desc="builds the app from the local git repository"
|
|
declare trigger="receive-app"
|
|
|
|
git_receive_app "$@"
|
|
return $?
|
|
}
|
|
|
|
trigger-git-receive-app "$@"
|