From def609eb9918217a9c73a71c50b4bae481199457 Mon Sep 17 00:00:00 2001 From: Sebastian Schuberth Date: Thu, 5 Aug 2010 08:08:48 +0200 Subject: [PATCH] cmd: Remove the quotes introduced in 53e5b4faa; we did not have them before This should fix issue 512. Signed-off-by: Sebastian Schuberth --- cmd/git.cmd | 4 ++-- cmd/gitk.cmd | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cmd/git.cmd b/cmd/git.cmd index 559bbbf0..dcd92b41 100644 --- a/cmd/git.cmd +++ b/cmd/git.cmd @@ -6,8 +6,8 @@ @for /F "delims=" %%I in ("%~dp0..") do @set git_install_root=%%~fI @set PATH=%git_install_root%\bin;%git_install_root%\mingw\bin;%PATH% -@if not exist "%HOME%" @set HOME="%HOMEDRIVE%%HOMEPATH%" -@if not exist "%HOME%" @set HOME="%USERPROFILE%" +@if not exist "%HOME%" @set HOME=%HOMEDRIVE%%HOMEPATH% +@if not exist "%HOME%" @set HOME=%USERPROFILE% @set PLINK_PROTOCOL=ssh diff --git a/cmd/gitk.cmd b/cmd/gitk.cmd index b99788da..a04764b5 100644 --- a/cmd/gitk.cmd +++ b/cmd/gitk.cmd @@ -6,7 +6,7 @@ @for /F "delims=" %%I in ("%~dp0..") do @set git_install_root=%%~fI @set PATH=%git_install_root%\bin;%git_install_root%\mingw\bin;%PATH% -@if not exist "%HOME%" @set HOME="%HOMEDRIVE%%HOMEPATH%" -@if not exist "%HOME%" @set HOME="%USERPROFILE%" +@if not exist "%HOME%" @set HOME=%HOMEDRIVE%%HOMEPATH% +@if not exist "%HOME%" @set HOME=%USERPROFILE% @start "gitk" wish.exe "%git_install_root%\bin\gitk" -- %* -- 2.11.4.GIT