Fix relative path repos

This commit is contained in:
DanielChabrowski
2019-03-09 23:56:37 +01:00
parent b920f3cc6b
commit 960bcc9614

View File

@@ -154,6 +154,9 @@ class Store(object):
def clone(self, repo, ref, deps=()):
"""Clone the given url and checkout the specific ref."""
if os.path.isdir(repo):
repo = os.path.abspath(repo)
def clone_strategy(directory):
env = git.no_git_env()