diff --git a/lib/git.js b/lib/git.js index 414e0bd..2885759 100644 --- a/lib/git.js +++ b/lib/git.js @@ -99,8 +99,7 @@ exports.clone = function clone(repo, dir, branch, options) { return Q.resolve(); } else { return fs.makeTree(path.dirname(path.resolve(dir))).then(function() { - var args = ['clone', repo, dir, '--branch', branch, '--single-branch', - '--origin', options.remote]; + var args = ['clone', repo, dir, '--branch', branch, '--single-branch', '--origin', options.remote]; if (options.depth) { args.push('--depth', options.depth); }