aboutsummaryrefslogtreecommitdiffstats
path: root/path.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2016-03-24 12:27:58 -0700
committerJunio C Hamano <gitster@pobox.com>2016-03-24 12:27:58 -0700
commit269fe3aed490b24f2b5d2d69ac2cc508e9366ac6 (patch)
tree0ebe11e3b789ff77fcbdd7465bb818c0354b6677 /path.c
parentMerge branch 'sb/submodule-module-list-pathspec-fix' (diff)
parentmingw: skip some tests in t9115 due to file name issues (diff)
downloadgit-269fe3aed490b24f2b5d2d69ac2cc508e9366ac6.tar.gz
git-269fe3aed490b24f2b5d2d69ac2cc508e9366ac6.zip
Merge branch 'js/mingw-tests-2.8'
* js/mingw-tests-2.8: mingw: skip some tests in t9115 due to file name issues t1300: fix the new --show-origin tests on Windows t1300-repo-config: make it resilient to being run via 'sh -x' config --show-origin: report paths with forward slashes
Diffstat (limited to 'path.c')
-rw-r--r--path.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/path.c b/path.c
index 8b7e168129..969b494d72 100644
--- a/path.c
+++ b/path.c
@@ -584,6 +584,9 @@ char *expand_user_path(const char *path)
if (!home)
goto return_null;
strbuf_addstr(&user_path, home);
+#ifdef GIT_WINDOWS_NATIVE
+ convert_slashes(user_path.buf);
+#endif
} else {
struct passwd *pw = getpw_str(username, username_len);
if (!pw)