diff options
| author | Chris Rebert <[email protected]> | 2014-03-17 03:33:42 -0700 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2014-03-17 03:33:42 -0700 |
| commit | dcffbbab61fe717f5d379d417a5789b92a6ec488 (patch) | |
| tree | 8ab814cc34232742e5b3d927039f25e2ebeb07f9 /Gruntfile.js | |
| parent | 1c6d303b766021f295cdf6dc322e005583af9b58 (diff) | |
| download | bootstrap-dcffbbab61fe717f5d379d417a5789b92a6ec488.tar.xz bootstrap-dcffbbab61fe717f5d379d417a5789b92a6ec488.zip | |
pass grunt into generateRawFilesJs instead of require()ing it
Diffstat (limited to 'Gruntfile.js')
| -rw-r--r-- | Gruntfile.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index 4592f1ab3..59205a25a 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -460,7 +460,7 @@ module.exports = function (grunt) { grunt.registerTask('build-customizer-html', 'jade'); grunt.registerTask('build-raw-files', 'Add scripts/less files to customizer.', function () { var banner = grunt.template.process('<%= banner %>'); - generateRawFiles(banner); + generateRawFiles(grunt, banner); }); // Task for updating the npm packages used by the Travis build. |
