From 390eaef7b59e2725cd1e2f0713e9c10fea4d8e86 Mon Sep 17 00:00:00 2001 From: Leo Lamprecht Date: Fri, 9 Jun 2017 22:26:55 +0200 Subject: [PATCH] Allowed using `process.exit()` in installation script --- download/install.js | 1 + 1 file changed, 1 insertion(+) diff --git a/download/install.js b/download/install.js index 0e03f19..e57185e 100755 --- a/download/install.js +++ b/download/install.js @@ -9,6 +9,7 @@ var src = path.join(__dirname, 'src') // Don't install when developing locally if (fs.existsSync(src)) { + // eslint-disable-next-line unicorn/no-process-exit process.exit(0) }