From 7717e8c38805c30203aac4facc6af44fbe66fa8a Mon Sep 17 00:00:00 2001 From: Ian Murray Date: Fri, 26 Apr 2019 20:13:38 -0400 Subject: [PATCH] Fix issues with paths on different OSes --- components/launcher.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/launcher.js b/components/launcher.js index 12c8eee..d93ff31 100644 --- a/components/launcher.js +++ b/components/launcher.js @@ -6,7 +6,7 @@ const fs = require('fs'); module.exports = async function (options) { - options.root = path.normalize(options.root); + options.root = path.resolve(options.root); if(!fs.existsSync(options.root)) fs.mkdirSync(options.root); if(options.clientPackage) {