Explorar el Código

Prevent rm complaining when removing one artifaft

DricomDragon hace 5 años
padre
commit
ad62455f38
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      makefile

+ 1 - 1
makefile

@@ -13,4 +13,4 @@ $(win-artifact-name): main.cpp
 	$(win-compiler) main.cpp -o $(win-artifact-name)
 
 clean:
-	rm $(linux-artifact-name) $(win-artifact-name)
+	rm -f $(linux-artifact-name) $(win-artifact-name)