fix(mk): removed directive for mk to delete build directory every run

This commit is contained in:
2025-02-12 16:22:00 -05:00
parent c8585bacd7
commit 0bf4c40699

5
mk
View File

@@ -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