mirror of
https://github.com/dokku/dokku.git
synced 2026-09-02 20:22:30 +02:00
19 lines
475 B
Bash
Executable File
19 lines
475 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eo pipefail
|
|
[[ $DOKKU_TRACE ]] && set -x
|
|
source "$PLUGIN_CORE_AVAILABLE_PATH/common/functions"
|
|
source "$PLUGIN_AVAILABLE_PATH/config/functions"
|
|
source "$PLUGIN_AVAILABLE_PATH/ps/functions"
|
|
|
|
trigger-ps-post-app-clone() {
|
|
declare desc="ps post-app-clone plugin trigger"
|
|
declare trigger="post-app-clone"
|
|
declare OLD_APP="$1" NEW_APP="$2"
|
|
|
|
if [[ "$SKIP_REBUILD" != "true" ]]; then
|
|
ps_rebuild "$NEW_APP"
|
|
fi
|
|
}
|
|
|
|
trigger-ps-post-app-clone "$@"
|