From 348c4e484cb3dc645daf455f0d75662f7f011e41 Mon Sep 17 00:00:00 2001 From: Quinn Date: Sat, 13 Sep 2025 21:44:46 +0200 Subject: [PATCH] fix: clean-libs can fail when it shouldn't --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a9d9696..c481ab2 100644 --- a/Makefile +++ b/Makefile @@ -52,7 +52,7 @@ clean: @[ -d bin/ ] && rm -vr bin/ || true @[ -d obj/ ] && rm -vr obj/ || true clean-libs: - @[ -d lib/obj/ ] && rm -vr lib/obj/ + @[ -d lib/obj/ ] && rm -vr lib/obj/ || true # compiles the libraries using cmake