commit 867746038d499ec8b5e6b12827dc67392fb3ee39
parent 846101b63c3cc9ee59392afaace9dca8ab8ca0a7
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Mon, 6 May 2024 13:01:17 +0200
Fixed deletion of some temporary files
Their filenames contained spaces and they were not enclosed in quotation
marks when submitted to the rm command.
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile
@@ -164,8 +164,8 @@ clean_test:
rm -f part_1_1.stl
rm -f part_1_2.stl
rm -f rectangle.stl
- rm -f sphere 1_0.stl
- rm -f sphere 1.stl
+ rm -f "sphere 1_0.stl"
+ rm -f "sphere 1.stl"
$(TEST_DEP): config.mk scad-local.pc
@$(CC) $(CFLAGS_EXE) $(RSYS_CFLAGS) $(SCAD_CFLAGS) \