浏览代码

Prevent rm complaining when removing one artifaft

DricomDragon 5 年之前
父节点
当前提交
ad62455f38
共有 1 个文件被更改,包括 1 次插入1 次删除
  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)