From 0bf4c40699245679cfb1e037c48ebf906ec1f61a Mon Sep 17 00:00:00 2001 From: Emily Boudreaux Date: Wed, 12 Feb 2025 16:22:00 -0500 Subject: [PATCH] fix(mk): removed directive for mk to delete build directory every run --- mk | 5 ----- 1 file changed, 5 deletions(-) diff --git a/mk b/mk index 6e3a90f..9bab354 100755 --- a/mk +++ b/mk @@ -1,10 +1,5 @@ #!/bin/bash -# Check if the build directory is present, and remove it -if [ -d "build" ]; then - rm -rf build -fi - # Check for the --noTest flag if [[ "$1" == "--noTest" ]]; then meson setup build -Dbuild_tests=false