Merge pull request #2310 from h3poteto/fix/clean

Ignore notraize.js in clean
This commit is contained in:
AkiraFukushima 2021-03-27 23:50:05 +09:00 committed by GitHub
commit 312be1f2a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ else if (process.env.BUILD_TARGET === 'web') web()
else build()
function clean() {
del.sync(['build/*', '!build/icons', '!build/icons/icon.*', '!build/sounds', '!build/sounds/*'])
del.sync(['build/*', '!build/icons', '!build/icons/icon.*', '!build/sounds', '!build/sounds/*', '!build/notarize.js'])
console.log(`\n${doneLog}\n`)
process.exit()
}