From 25d64bb8592772f206cb8fb7aacd2472a90e6ad1 Mon Sep 17 00:00:00 2001 From: Rebekah Rowe Date: Wed, 14 Feb 2024 08:33:43 -0500 Subject: [PATCH] Updated build-clean.sh to be more verbose with its resulting status. --- build-clean.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build-clean.sh b/build-clean.sh index 671b375e1..96563c152 100755 --- a/build-clean.sh +++ b/build-clean.sh @@ -8,5 +8,7 @@ if [ -f CMakeLists.txt ]; then fi if [ -f CMakeCache.txt ]; then - rm -r * + rm -vr * +else + echo "Build contains a nonworking cmake. Not removing anything, bailing." fi