From da702bd40a36f03b3ffe65d6df6b1ecb2feb3a88 Mon Sep 17 00:00:00 2001 From: Jiiks Date: Sun, 11 Feb 2018 22:25:15 +0200 Subject: [PATCH] Ensure forward slashes --- client/src/modules/thememanager.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/modules/thememanager.js b/client/src/modules/thememanager.js index bb4e8966..94007f9f 100644 --- a/client/src/modules/thememanager.js +++ b/client/src/modules/thememanager.js @@ -92,7 +92,7 @@ class Theme { if (this.info.type === 'sass') { css = await ClientIPC.send('bd-compileSass', { scss: ThemeManager.getConfigAsSCSS(this.themeConfig), - path: this.paths.mainPath + path: this.paths.mainPath.replace(/\\/g, '/') }); console.log(css); } else {