From c61e98169c60bd8eda2ef328604b713150665ff6 Mon Sep 17 00:00:00 2001 From: Dom Rodriguez Date: Fri, 5 Nov 2021 20:43:27 +0000 Subject: [PATCH] Remove obvious comments Signed-off-by: Dom Rodriguez --- clean_build.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/clean_build.sh b/clean_build.sh index f8744360..64e014c0 100755 --- a/clean_build.sh +++ b/clean_build.sh @@ -9,10 +9,8 @@ B_CMAKE=$(command -v cmake3 2>/dev/null) if [ "$?" -eq 0 ]; then continue else - # OK, so cmake3 isn't in path, so let's test to see if `cmake` itself exists, before proceeding. if command -v cmake 2>/dev/null; then B_CMAKE=$(command -v cmake) - # We have a cmake executable available, now let's proceed! else echo "ERROR: CMake not in $PATH, cannot build! Please install CMake, or if this persists, file a bug report." exit 1