From 85ed19d69a2117f7ca6cdf2aeb9cf5c5105a6c8b Mon Sep 17 00:00:00 2001 From: Remy Sharp Date: Tue, 27 Feb 2018 17:34:28 +0000 Subject: [PATCH] fix: throwing exeception on run Fixes #1276 Due to const being used. --- lib/monitor/run.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/monitor/run.js b/lib/monitor/run.js index a0d07124..06e39eb1 100644 --- a/lib/monitor/run.js +++ b/lib/monitor/run.js @@ -40,8 +40,8 @@ function run(options) { stdio = [process.stdin, process.stdout, process.stderr]; } - const sh = 'sh'; - const shFlag = '-c'; + var sh = 'sh'; + var shFlag = '-c'; const binPath = process.cwd() + '/node_modules/.bin';