mirror of
https://github.com/dokku/dokku.git
synced 2025-12-16 20:17:44 +01:00
15 lines
405 B
Plaintext
15 lines
405 B
Plaintext
|
|
#!/usr/bin/env bash
|
||
|
|
source "$PLUGIN_CORE_AVAILABLE_PATH/common/property-functions"
|
||
|
|
set -eo pipefail
|
||
|
|
[[ $DOKKU_TRACE ]] && set -x
|
||
|
|
|
||
|
|
trigger-builder-dockerfile-post-delete() {
|
||
|
|
declare desc="destroys the builder-dockerfile properties for a given app"
|
||
|
|
declare trigger="post-delete"
|
||
|
|
declare APP="$1"
|
||
|
|
|
||
|
|
fn-plugin-property-destroy "builder-dockerfile" "$APP"
|
||
|
|
}
|
||
|
|
|
||
|
|
trigger-builder-dockerfile-post-delete "$@"
|