From bdbec460232c8de7127fcb6a4ed584ecdfbe8c62 Mon Sep 17 00:00:00 2001 From: kichik Date: Mon, 20 Jun 2005 20:13:16 +0000 Subject: [PATCH] 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 --- Include/LogicLib.nsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Include/LogicLib.nsh b/Include/LogicLib.nsh index 0a8615ba..93b7a538 100644 --- a/Include/LogicLib.nsh +++ b/Include/LogicLib.nsh @@ -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