Skip to content

Commit 20fd072

Browse files
committed
Tidy up some unwanted quotes in file paths
1 parent 22cdb87 commit 20fd072

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

windows-compile-vs.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ set script_path=%~dp0
4141
set log_file=%script_path%compile.log
4242
echo.>"%log_file%"
4343

44-
set outpath="%cd%"
44+
set "outpath=%cd%"
4545

4646
where git >nul 2>nul || (call :pm-echo-error "git is required" & exit 1)
4747
where cmake >nul 2>nul || (call :pm-echo-error "cmake is required" & exit 1)
@@ -124,7 +124,7 @@ call :get-zip https://github.com/php/php-src/archive/%PHP_GIT_REV%.zip || call :
124124
move php-src-%PHP_GIT_REV% php-src >>"%log_file%" 2>&1 || call :pm-fatal-error "Failed to move PHP source to target directory"
125125

126126
set DEPS_DIR_NAME=deps
127-
set DEPS_DIR="%SOURCES_PATH%\%DEPS_DIR_NAME%"
127+
set "DEPS_DIR=%SOURCES_PATH%\%DEPS_DIR_NAME%"
128128

129129
call :pm-echo "Downloading PHP dependencies into %DEPS_DIR%..."
130130
call bin\phpsdk_deps.bat -u -t %VC_VER% -b %PHP_MAJOR_VER% -a %ARCH% -f -d %DEPS_DIR_NAME% >>"%log_file%" 2>&1 || exit 1

0 commit comments

Comments
 (0)