We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b50b960 commit 6df6d41Copy full SHA for 6df6d41
git/repo/fun.py
@@ -86,7 +86,7 @@ def find_submodule_git_dir(d):
86
## Cygwin creates submodules prefixed with `/cygdrive/...` suffixes.
87
path = decygpath(path)
88
if not osp.isabs(path):
89
- path = osp.join(osp.dirname(d), path)
+ path = osp.normpath(osp.join(osp.dirname(d), path))
90
return find_submodule_git_dir(path)
91
# end handle exception
92
return None
0 commit comments