From 432574d53541828e30773851d94d171b80b9cd01 Mon Sep 17 00:00:00 2001 From: Pete Fotheringham Date: Sun, 29 Sep 2024 19:57:40 +0100 Subject: [PATCH] Fix #688 - remove `vendor/*` in cleanup --- src/new_build.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/src/new_build.sh b/src/new_build.sh index 2f639cb..ddc0c5a 100755 --- a/src/new_build.sh +++ b/src/new_build.sh @@ -81,6 +81,7 @@ do_cleanup() { else cd "$source_dir" (set +eu ; mka "${jobs_arg[@]}" clean) &>> "$DEBUG_LOG" + rm -rf vendor/* || true fi fi }