Skip to content

Commit

Permalink
fix: package prepare script
Browse files Browse the repository at this point in the history
  • Loading branch information
guidiaz committed Feb 19, 2024
1 parent 962c89d commit c034491
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/prepare.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 {} \\;')
}
}

Expand Down

0 comments on commit c034491

Please sign in to comment.