From 2f29832e70f13de98b4e0832c3e37f0d0248b5a8 Mon Sep 17 00:00:00 2001 From: James Woodrow Date: Sun, 7 Nov 2021 17:29:03 +0100 Subject: [PATCH] use quotes to reference the runnerPath when spewing the command --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 46d2657..858ebac 100644 --- a/index.js +++ b/index.js @@ -79,7 +79,7 @@ function transformSource (runner, config, source, map, callback) { var child = spawn( runner.file, runner.arguments.concat( - runnerPath, + `"${runnerPath}"`, ioDelimiter, config.engine ),