From 45ef8babd19c49a62db66836795c0eb512808df2 Mon Sep 17 00:00:00 2001 From: wf9a5m75 Date: Wed, 20 Mar 2019 14:23:37 -0700 Subject: [PATCH] Fix: eslint error --- src/after_plugin_install.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/after_plugin_install.js b/src/after_plugin_install.js index 74b9243a4..8a97378d7 100644 --- a/src/after_plugin_install.js +++ b/src/after_plugin_install.js @@ -17,6 +17,6 @@ module.exports = function(ctx) { .pipe(fs.createWriteStream(pluginXmlPath)) .on('error', reject) .on('close', resolve); - }); + })); };