Commit 502e8c06 authored by Chris Rebert's avatar Chris Rebert

Merge pull request #14118 from vsn4ik/add-semicolon-in-gruntfile

Gruntfile.js: Add semicolon in "_update-shrinkwrap" task.
parents d8d95437 59171b33
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment