del /q doesn't work on Windows 98 and on XP it only means not to ask on global wildcard deletion, which LogicLib doesn't do anyway

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4110 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2005-06-20 20:13:16 +00:00
parent ab0ca610ef
commit bdbec46023

View file

@ -749,7 +749,7 @@
${${_Logic}Switch}: ; Place the end of the switch
!undef ${_Logic}Switch
!include "${${_Switch}Tmp}" ; Include the jump table
!system `del /q "${${_Switch}Tmp}"` ; and clear it up
!system `del "${${_Switch}Tmp}"` ; and clear it up
!ifdef ${_Switch}Else ; Was there a default case?
Goto ${${_Switch}Else} ; then go there if all else fails
!undef ${_Switch}Else