Skip to content

Commit 7d0cc9f

Browse files
Update run_unattended_tests.bat
Fixed unexpected ")" error (escaping parenthesis inside string)
1 parent de221ef commit 7d0cc9f

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

scripts/run_unattended_tests.bat

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,8 @@ call :test %WINPYDIRBASE%
1919
pause
2020
exit /B %ERRORLEVEL%
2121
:no
22-
for /d %%d in (C:,C:\Apps,%localappdata%\Programs,%programfiles%,%ProgramFiles(x86)%) do (
22+
for /d %%d in (C:,C:\Apps,%localappdata%\Programs,%programfiles%,%ProgramFiles(x86^^^)%) do (
2323
for /f %%f in ('dir /b %%d\w*') do (
24-
echo %%d\%%f
2524
call :test %%d\%%f
2625
)
2726
)
@@ -37,4 +36,4 @@ if exist %ENV% (
3736
call %ENV%
3837
python -m qwt.tests.__init__ --mode unattended
3938
)
40-
exit /B 0
39+
exit /B 0

0 commit comments

Comments
 (0)