fix(driver): AttributeError error when CWD contains space (#19801)
This commit is contained in:
parent
2714e728d0
commit
b695478840
|
|
@ -1,6 +1,6 @@
|
||||||
@echo off
|
@echo off
|
||||||
setlocal
|
setlocal
|
||||||
if not defined PLAYWRIGHT_NODEJS_PATH (
|
if not defined PLAYWRIGHT_NODEJS_PATH (
|
||||||
set PLAYWRIGHT_NODEJS_PATH=%~dp0\node.exe
|
set PLAYWRIGHT_NODEJS_PATH="%~dp0\node.exe"
|
||||||
)
|
)
|
||||||
"""%PLAYWRIGHT_NODEJS_PATH%""" "%~dp0\package\lib\cli\cli.js" %*
|
""%PLAYWRIGHT_NODEJS_PATH%"" "%~dp0\package\lib\cli\cli.js" %*
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue