Files

16 lines
443 B
Plaintext
Raw Permalink Normal View History

2022-04-16 01:29:10 -04:00
#!/usr/bin/env bash
source "$PLUGIN_CORE_AVAILABLE_PATH/common/property-functions"
set -eo pipefail
[[ $DOKKU_TRACE ]] && set -x
trigger-builder-lambda-post-delete() {
declare desc="destroys the builder-lambda properties for a given app"
declare trigger="post-delete"
declare APP="$1"
fn-plugin-property-destroy "builder-lambda" "$APP"
rm -rf "${DOKKU_LIB_ROOT}/data/builder-lambda/$APP"
2022-04-16 01:29:10 -04:00
}
trigger-builder-lambda-post-delete "$@"