Skip to content

Commit

Permalink
fix(driver): with CWD which contained spaces (#17579)
Browse files Browse the repository at this point in the history
  • Loading branch information
mxschmitt committed Sep 26, 2022
1 parent f5d7089 commit a5eee6d
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions utils/build/run-driver-win.cmd
@@ -1,4 +1,6 @@
@ECHO OFF
SETLOCAL
IF %PLAYWRIGHT_NODEJS_PATH%x == x SET PLAYWRIGHT_NODEJS_PATH="%~dp0\node.exe"
"%PLAYWRIGHT_NODEJS_PATH%" "%~dp0\package\lib\cli\cli.js" %*
@echo off
setlocal
if not defined PLAYWRIGHT_NODEJS_PATH (
set PLAYWRIGHT_NODEJS_PATH=%~dp0\node.exe
)
"""%PLAYWRIGHT_NODEJS_PATH%""" "%~dp0\package\lib\cli\cli.js" %*

0 comments on commit a5eee6d

Please sign in to comment.