From 49e48a457a7451db1ed304a485c00a804f6ff8c8 Mon Sep 17 00:00:00 2001
From: Tim Schaub <tim.schaub@gmail.com>
Date: Wed, 16 Nov 2016 18:03:33 -0700
Subject: [PATCH] Unindent

---
 lib/git.js | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

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);
         }