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.
2 parents e18fe54 + bca874a commit 3d07171Copy full SHA for 3d07171
make.py
@@ -1353,7 +1353,7 @@ def _create_batch_scripts_initial(self):
1353
ReDim arr(WScript.Arguments.Count-1)
1354
For i = 0 To WScript.Arguments.Count-1
1355
Arg = WScript.Arguments(i)
1356
- If InStr(Arg, " ") > 0 Then Arg = chr(34) & Arg & chr(34)
+ If InStr(Arg, " ") > 0 or InStr(Arg, "&") > 0 Then Arg = chr(34) & Arg & chr(34)
1357
arr(i) = Arg
1358
Next
1359
0 commit comments