]> gitweb.factorcode.org Git - factor.git/commitdiff
Don't use rm from the nmake build.
authorNiklas Larsson <niklas@mm.st>
Thu, 31 Oct 2019 12:41:22 +0000 (13:41 +0100)
committerJohn Benediktsson <mrjbq7@gmail.com>
Sun, 24 Nov 2019 23:51:15 +0000 (15:51 -0800)
Nmakefile

index 709befb1a009f1ae57f2a866294f8b00fe5e12ed..7d0dd250f42abf02372f7fad015e9c7fbb60b484 100644 (file)
--- a/Nmakefile
+++ b/Nmakefile
@@ -8,21 +8,21 @@ VERSION = 0.99
 !IF [git describe --all > git-describe.tmp] == 0
 GIT_DESCRIBE = \
 !INCLUDE <git-describe.tmp>
-!IF [rm git-describe.tmp] == 0
+!IF [del git-describe.tmp] == 0
 !ENDIF
 !ENDIF
 
 !IF [git rev-parse HEAD > git-id.tmp] == 0
 GIT_ID = \
 !INCLUDE <git-id.tmp>
-!IF [rm git-id.tmp] == 0
+!IF [del git-id.tmp] == 0
 !ENDIF
 !ENDIF
 
 !IF [git rev-parse --abbrev-ref HEAD > git-branch.tmp] == 0
 GIT_BRANCH = \
 !INCLUDE <git-branch.tmp>
-!IF [rm git-branch.tmp] == 0
+!IF [del git-branch.tmp] == 0
 !ENDIF
 !ENDIF