From 6d13ee8a4e8f86b384e40ed0ef0be242864c6185 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Fri, 14 Apr 2017 14:00:43 +0200 Subject: [PATCH] Use the git_dir to clone the repository in the right directory. --- dependency_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dependency_utils.py b/dependency_utils.py index aff8281..357d163 100644 --- a/dependency_utils.py +++ b/dependency_utils.py @@ -134,7 +134,7 @@ class GitClone(Source): context.force_native_build = True if os.path.exists(self.git_path): raise SkipCommand() - command = "git clone " + self.git_remote + command = "git clone {} {}".format(self.git_remote, self.git_dir) self.buildEnv.run_command(command, self.buildEnv.source_dir, context) def _git_update(self, context):