mirror of
https://github.com/dokku/dokku.git
synced 2025-12-25 16:29:30 +01:00
15 lines
340 B
Bash
Executable File
15 lines
340 B
Bash
Executable File
#!/usr/bin/env bash
|
|
source "$PLUGIN_AVAILABLE_PATH/git/internal-functions"
|
|
set -eo pipefail
|
|
[[ $DOKKU_TRACE ]] && set -x
|
|
|
|
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 "$@"
|