aboutsummaryrefslogtreecommitdiff
path: root/Gruntfile.js
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-08-19 13:58:29 -0700
committerMark Otto <[email protected]>2013-08-19 13:58:29 -0700
commitf95ab89fb1da85ff0fcb95c43d4fe4af359e302a (patch)
tree473ad47a526523593cea3fec23c01dc39bcf748f /Gruntfile.js
parentfadf0160435719fce4a1790b1ace7cfa044aa82b (diff)
downloadbootstrap-f95ab89fb1da85ff0fcb95c43d4fe4af359e302a.tar.xz
bootstrap-f95ab89fb1da85ff0fcb95c43d4fe4af359e302a.zip
really do the raw liquid tag
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index 5fa37a0c7..634deef52 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -211,7 +211,7 @@ module.exports = function(grunt) {
}
var customize = fs.readFileSync('customize.html', 'utf-8')
- var files = '<!-- generated -->\n<script id="files">\n' + getFiles('js') + getFiles('less') + getFiles('fonts') + '<\/script>\n<!-- /generated -->'
+ var files = '{% raw %}<!-- generated -->\n<script id="files">\n' + getFiles('js') + getFiles('less') + getFiles('fonts') + '<\/script>\n<!-- /generated -->{% endraw %}'
fs.writeFileSync('customize.html', customize.replace(/<!-- generated -->(.|[\n\r])*<!-- \/generated -->/, '') + files)
});
};