From 96e7d00c393fa2d8e11e2e5844b78822eccbeb60 Mon Sep 17 00:00:00 2001 From: ChangeSuger Date: Sat, 19 Oct 2024 12:44:38 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=20windows=20=E7=B3=BB?= =?UTF-8?q?=E7=BB=9F=20node20=20=E7=8E=AF=E5=A2=83=E4=B8=8B=E6=A0=B7?= =?UTF-8?q?=E5=BC=8F=E6=96=87=E4=BB=B6=E6=89=93=E5=8C=85=E5=A4=B1=E8=B4=A5?= =?UTF-8?q?=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/build-less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build-less b/scripts/build-less index bdb73b3a8..cf86d271f 100755 --- a/scripts/build-less +++ b/scripts/build-less @@ -19,7 +19,7 @@ function compile(source, target) { if (os.type() === 'Windows_NT') { cmd = path.join(cwd, `${cmd}.cmd`) } - cp.execFileSync(cmd, [source, target]) + cp.execFileSync(cmd, [source, target], { shell: true }) } function toCSSPath(source) {