diff options
Diffstat (limited to 'lib/utils')
-rw-r--r-- | lib/utils/git.js | 2 |
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); }); |