fix: delete the data dir for the app after the app is deleted

This commit is contained in:
Jose Diaz-Gonzalez
2022-08-09 02:12:27 -04:00
parent 2959fdd154
commit 65b9c6aa3e

View File

@@ -9,6 +9,7 @@ trigger-builder-lambda-post-delete() {
declare APP="$1"
fn-plugin-property-destroy "builder-lambda" "$APP"
rm -rf "${DOKKU_LIB_ROOT}/data/builder-lambda/$APP"
}
trigger-builder-lambda-post-delete "$@"