mirror of
https://github.com/dokku/dokku.git
synced 2026-02-24 04:00:36 +01:00
This fixes issues where alternative tools that don't trigger the init via sshcommand - such as git-http-backend - are not able to setup applications correctly. Note that those apps could always manually trigger git:initialize if desired, but if the app already exists, then this should already _just work_ without that extra initialization.
15 lines
331 B
Bash
Executable File
15 lines
331 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eo pipefail
|
|
[[ $DOKKU_TRACE ]] && set -x
|
|
source "$PLUGIN_AVAILABLE_PATH/git/functions"
|
|
|
|
trigger-git-post-create() {
|
|
declare desc="initializes an app with the correct git repository structure"
|
|
declare trigger="post-create"
|
|
declare APP="$1"
|
|
|
|
fn-git-create-hook "$APP"
|
|
}
|
|
|
|
trigger-git-post-create "$@"
|