We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28cb208 commit 135a62cCopy full SHA for 135a62c
src/Makevars.win
@@ -15,12 +15,11 @@ PKG_LIBS += \
15
all: clean winlibs
16
17
clean:
18
- del /Q $(OBJECTS) $(SHLIB)
19
-
+ powershell -Command "Remove-Item -Force -Recurse $(OBJECTS), $(SHLIB)"
20
21
winlibs:
22
"${R_HOME}/bin${R_ARCH_BIN}/Rscript.exe" "../tools/winlibs.R"
23
- rmdir /S /Q ../inst/share && mkdir ../inst/share
+ powershell -Command "Remove-Item -Force -Recurse ../inst/share; New-Item -ItemType Directory ../inst/share"
24
25
.PHONY: all winlibs clean
26
0 commit comments