From f4f106a1c278fd10ad4e71d1b6035e5db2e42873 Mon Sep 17 00:00:00 2001 From: Petr Skoda Date: Sun, 26 Mar 2023 13:22:01 +0200 Subject: [PATCH] MDL-77748 grunt: fix Windows compatibility --- .grunt/tasks/componentlibrary.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.grunt/tasks/componentlibrary.js b/.grunt/tasks/componentlibrary.js index d31fc04aa0a..9b37ce8d671 100644 --- a/.grunt/tasks/componentlibrary.js +++ b/.grunt/tasks/componentlibrary.js @@ -92,7 +92,7 @@ module.exports = grunt => { * @returns {Object} Reference to the spawned task */ const cssBuild = () => spawnNodeCall([ - 'node_modules/.bin/sass', + 'node_modules/sass/sass.js', '--style', 'expanded', '--source-map', '--embed-sources',