aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <[email protected]>2014-07-10 16:56:25 -0700
committerChris Rebert <[email protected]>2014-07-10 16:56:25 -0700
commit502e8c069ea3377cc129ff4164a3797a69045b32 (patch)
tree79b0a359df741bcca2bdd3ae5f0d7a6b4bf8ca85
parentd8d954372c5e44de97080bdd87559ab302690bc2 (diff)
parent59171b337710293e5b6284802d2d433c0f7dd525 (diff)
downloadbootstrap-502e8c069ea3377cc129ff4164a3797a69045b32.tar.xz
bootstrap-502e8c069ea3377cc129ff4164a3797a69045b32.zip
Merge pull request #14118 from vsn4ik/add-semicolon-in-gruntfile
Gruntfile.js: Add semicolon in "_update-shrinkwrap" task.
-rw-r--r--Gruntfile.js2
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);