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 | |
parent | a972b327694b8facd2295cdca17886a6da27c2cb (diff) | |
download | gitbook-80edad53d49886b6dadaa380e91a89a5952ed967.zip gitbook-80edad53d49886b6dadaa380e91a89a5952ed967.tar.gz gitbook-80edad53d49886b6dadaa380e91a89a5952ed967.tar.bz2 |
Update nunjucks to fix raw and loader
-rw-r--r-- | lib/utils/git.js | 2 | ||||
-rw-r--r-- | package.json | 2 |
2 files changed, 2 insertions, 2 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); }); diff --git a/package.json b/package.json index 13575a4..e89a19d 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,7 @@ "fs-extra": "0.16.5", "fstream-ignore": "1.0.2", "gitbook-parsers": "0.7.7", - "nunjucks": "2.0.0", + "nunjucks": "mozilla/nunjucks#b4351ec0752b102ebd02c5e2cbc2898a6e0e4839", "nunjucks-autoescape": "1.0.0", "nunjucks-filter": "1.0.0", "i18n": "0.5.0", |