Skip to content

Commit 70f2dac

Browse files
nalladscho
authored andcommitted
git-wrapper: support git.exe to be in a spaced dir
When *Git for Windows* is installed into a directory that has spaces in it, e.g. `C:\Program Files\Git`, the `git-wrapper` appends this directory unquoted when fixing up the command line. To resolve this, just quote the provided `execpath`. Signed-off-by: nalla <[email protected]>
1 parent 2baaa5f commit 70f2dac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compat/win32/git-wrapper.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ static LPWSTR fixup_commandline(LPWSTR exepath, LPWSTR *exep, int *wait,
133133
(wcslen(cmdline) + prefix_args_len + 1 + MAX_PATH));
134134
if (prefix_args) {
135135
if (is_git_command)
136-
_swprintf(cmd, L"%s\\%s %.*s", exepath, L"git.exe",
136+
_swprintf(cmd, L"\"%s\\%s\" %.*s", exepath, L"git.exe",
137137
prefix_args_len, prefix_args);
138138
else
139139
_swprintf(cmd, L"%.*s", prefix_args_len, prefix_args);

0 commit comments

Comments
 (0)