updates
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4170 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
911f5855d8
commit
76dd1565dd
3 changed files with 89 additions and 63 deletions
|
@ -268,13 +268,22 @@ Section GetOptions
|
|||
${GetOptions} '/INSTDIR=WxxxW /SILENT=yes' '/INSTDIR=' $OUT1
|
||||
StrCmp $OUT1 'WxxxW' 0 error
|
||||
|
||||
${GetOptions} "/Prm='/D=True' /D=1" '/D=' $OUT1
|
||||
StrCmp $OUT1 "1" 0 error
|
||||
|
||||
${GetOptions} "/D=1 /Prm='/D=True'" '/Prm=' $OUT1
|
||||
StrCmp $OUT1 "/D=True" 0 error
|
||||
|
||||
${GetOptions} `/D=1 /Prm='/D="True" /S="/Temp"'` '/Prm=' $OUT1
|
||||
StrCmp $OUT1 '/D="True" /S="/Temp"' 0 error
|
||||
|
||||
${GetOptions} `/INSTDIR='"C:/Program Files/Common Files"' /SILENT=yes` '/INSTDIR=' $OUT1
|
||||
StrCmp $OUT1 '"C:/Program Files/Common Files"' 0 error
|
||||
|
||||
${GetOptions} `/INSTDIR='"C:/Program Files/Common Files"' /SILENT=yes` '/INSTDIR*=' $OUT1
|
||||
StrCmp $OUT1 '' 0 error
|
||||
|
||||
${GetOptions} `/INSTDIR=''C:/Program Files/Common Files'' /SILENT=yes` '' $OUT1
|
||||
${GetOptions} `/INSTDIR="C:/Program Files/Common Files" /SILENT=yes` '' $OUT1
|
||||
StrCmp $OUT1 '' 0 error
|
||||
|
||||
goto +2
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue