summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--morphlib/git.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/morphlib/git.py b/morphlib/git.py
index deb72eb6..d897de3b 100644
--- a/morphlib/git.py
+++ b/morphlib/git.py
@@ -307,7 +307,7 @@ def clone_into(runcmd, srcpath, targetpath, ref=None):
gitcmd(runcmd, 'clone', srcpath, targetpath)
elif is_valid_sha1(ref):
gitcmd(runcmd, 'clone', srcpath, targetpath)
- gitcmd(runcmd, 'checkout', ref)
+ gitcmd(runcmd, 'checkout', ref, cwd=targetpath)
else:
gitcmd(runcmd, 'clone', '-b', ref, srcpath, targetpath)
gd = morphlib.gitdir.GitDirectory(targetpath)