mute first cd in win proxy stub for sh shell, fixes #6567
in the sh script, the first cd command did output the directory it cd'ed into did output the path itself. fix for me is to redirect it's standard output to /dev/null using git bash on a windows 10 box. w/o this fix, the workaround is to invoke the .bat file which is created as well (but this is not so handy as a non windows user for me).pull/6568/head
parent
189ba423ae
commit
1bc5163d34
|
@ -194,7 +194,7 @@ class BinaryInstaller
|
|||
$proxyCode = <<<PROXY
|
||||
#!/usr/bin/env sh
|
||||
|
||||
dir=$(d=\${0%[/\\\\]*}; cd "\$d"; cd $binDir && pwd)
|
||||
dir=$(d=\${0%[/\\\\]*}; cd "\$d" > /dev/null; cd $binDir && pwd)
|
||||
|
||||
# See if we are running in Cygwin by checking for cygpath program
|
||||
if command -v 'cygpath' >/dev/null 2>&1; then
|
||||
|
|
Loading…
Reference in New Issue