mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #9220 from jlaska/devel
Resolve issue where repo_path contains multiple '.git' strings
This commit is contained in:
commit
d99e4f15c8
1 changed files with 1 additions and 1 deletions
|
@ -845,7 +845,7 @@ def _git_repo_info(repo_path):
|
||||||
if os.path.isabs(gitdir):
|
if os.path.isabs(gitdir):
|
||||||
repo_path = gitdir
|
repo_path = gitdir
|
||||||
else:
|
else:
|
||||||
repo_path = os.path.join(repo_path.split('.git')[0], gitdir)
|
repo_path = os.path.join(repo_path[:-4], gitdir)
|
||||||
except (IOError, AttributeError):
|
except (IOError, AttributeError):
|
||||||
return ''
|
return ''
|
||||||
f = open(os.path.join(repo_path, "HEAD"))
|
f = open(os.path.join(repo_path, "HEAD"))
|
||||||
|
|
Loading…
Reference in a new issue