From 1025c7679fdff0e2ae9fe47bf8ef653f32671bdf Mon Sep 17 00:00:00 2001 From: kjwon15 Date: Thu, 22 Feb 2018 11:11:31 +0900 Subject: [PATCH] Fix trap Last trap will exec. --- plugins/git/functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/git/functions b/plugins/git/functions index a73926839..35dcf7974 100755 --- a/plugins/git/functions +++ b/plugins/git/functions @@ -41,7 +41,7 @@ git_build_app_repo() { # unset the git quarantine path to allow us to use 2.13.0+ # See this issue for more information: https://github.com/dokku/dokku/issues/2796 env -u GIT_QUARANTINE_PATH git worktree add "$GIT_BUILD_APP_REPO_TMP_WORK_DIR" "$REV" > /dev/null - trap 'git worktree prune > /dev/null' RETURN INT TERM EXIT + trap 'rm -rf "$GIT_BUILD_APP_REPO_TMP_WORK_DIR"; git worktree prune > /dev/null' RETURN INT TERM EXIT popd > /dev/null pushd "$GIT_BUILD_APP_REPO_TMP_WORK_DIR" > /dev/null else