diff options
author | Samy Pessé <samypesse@gmail.com> | 2015-09-01 17:25:43 +0200 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2015-09-01 17:25:43 +0200 |
commit | 80edad53d49886b6dadaa380e91a89a5952ed967 (patch) | |
tree | 7f97982c8788e5cdcaea77529dc244b5914ce60f /lib | |
parent | a972b327694b8facd2295cdca17886a6da27c2cb (diff) | |
download | gitbook-80edad53d49886b6dadaa380e91a89a5952ed967.zip gitbook-80edad53d49886b6dadaa380e91a89a5952ed967.tar.gz gitbook-80edad53d49886b6dadaa380e91a89a5952ed967.tar.bz2 |
Update nunjucks to fix raw and loader
Diffstat (limited to 'lib')
-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); }); |