From c034491c9650119c6a7930cdd2285a0a68b77f75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guillermo=20D=C3=ADaz?= Date: Mon, 19 Feb 2024 10:15:35 +0100 Subject: [PATCH] fix: package prepare script --- scripts/prepare.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/prepare.js b/scripts/prepare.js index 4d7b7844..6fda7a86 100644 --- a/scripts/prepare.js +++ b/scripts/prepare.js @@ -6,7 +6,7 @@ if (fs.existsSync("./artifacts")) { if (os.type() === "Windows_NT") { exec("del /s /q artifacts\\*.dbg.json") } else { - exec("find ./artifacts -name *.dbg.json -exec rm -r {} \\;") + exec('find ./artifacts -name "*.dbg.json" -exec rm -r {} \\;') } }