diff options
| author | vsn4ik <[email protected]> | 2014-07-11 03:42:09 +0400 |
|---|---|---|
| committer | vsn4ik <[email protected]> | 2014-07-11 03:42:09 +0400 |
| commit | 59171b337710293e5b6284802d2d433c0f7dd525 (patch) | |
| tree | 51d16b3d5b0c6b6b0aa10dc7b1df96c8861cb6eb | |
| parent | 94472ee74ac6732a3abd0d32ad5c3a68370090c0 (diff) | |
| download | bootstrap-59171b337710293e5b6284802d2d433c0f7dd525.tar.xz bootstrap-59171b337710293e5b6284802d2d433c0f7dd525.zip | |
Gruntfile.js: Add semicolon in "_update-shrinkwrap" task.
| -rw-r--r-- | Gruntfile.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index b3b21448f..dd706a8aa 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -467,7 +467,7 @@ module.exports = function (grunt) { var done = this.async(); npmShrinkwrap({ dev: true, dirname: __dirname }, function (err) { if (err) { - grunt.fail.warn(err) + grunt.fail.warn(err); } var dest = 'test-infra/npm-shrinkwrap.json'; fs.renameSync('npm-shrinkwrap.json', dest); |
