From 7a937b21de60f09e59df9e1d99255e3fb8f36dd7 Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 12 Aug 2014 13:42:21 +0200 Subject: [PATCH] Added recursive cloning required for some packages --- lib/sources/git.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/sources/git.js b/lib/sources/git.js index 4337f58..0f06bd3 100644 --- a/lib/sources/git.js +++ b/lib/sources/git.js @@ -113,7 +113,7 @@ GitSource.prototype._clone = function(fn) { var self = this, child, timedOut = false, - command = 'git clone --progress ' + + command = 'git clone --progress --recursive ' + this.url + ' "' + this.sourcePath + '"', options = { rollingTimeout: ROLLING_TIMEOUT };