Removed quotes that escaping generated inside of path in win proxy script
Fixes #2040pull/2063/head
parent
94ff1ed8f7
commit
e9522e29dd
|
@ -277,7 +277,7 @@ class LibraryInstaller implements InstallerInterface
|
|||
}
|
||||
|
||||
return "@ECHO OFF\r\n".
|
||||
"SET BIN_TARGET=%~dp0\\".escapeshellarg(dirname($binPath)).'\\'.basename($binPath)."\r\n".
|
||||
"SET BIN_TARGET=%~dp0/".trim(escapeshellarg($binPath), '"')."\r\n".
|
||||
"{$caller} \"%BIN_TARGET%\" %*\r\n";
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue