summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/utils/git.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/utils/git.js b/lib/utils/git.js
index 2c3dd3f..5f17395 100644
--- a/lib/utils/git.js
+++ b/lib/utils/git.js
@@ -83,7 +83,7 @@ function cloneGitRepo(host, ref) {
return exec("git clone "+host+" "+repoPath)
.then(function() {
return exec("git checkout "+ref, { cwd: repoPath });
- })
+ });
})
.thenResolve(repoPath);
});