1
0
Fork 0

BinaryInstaller::generateWindowsProxyCode() now trims both single and double quotes from $binPath when creating windows .bat file.

pull/5195/merge
Sami Jawhar 2016-04-13 16:42:51 -07:00 committed by Jordi Boggiano
parent 6d20146d08
commit 9d2db57f65
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ class BinaryInstaller
return "@ECHO OFF\r\n".
"setlocal DISABLEDELAYEDEXPANSION\r\n".
"SET BIN_TARGET=%~dp0/".trim(ProcessExecutor::escape($binPath), '"')."\r\n".
"SET BIN_TARGET=%~dp0/".trim(ProcessExecutor::escape($binPath), '"\'')."\r\n".
"{$caller} \"%BIN_TARGET%\" %*\r\n";
}