refactor: clean up empty folders (#6454)

This commit is contained in:
Louis 2025-09-15 10:27:07 +07:00 committed by GitHub
parent 0771b998a5
commit 1d36a4ad6e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 1 additions and 5 deletions

1
.gitignore vendored
View File

@ -13,6 +13,7 @@ core/lib/**
.yarnrc .yarnrc
*.tsbuildinfo *.tsbuildinfo
test_results.html test_results.html
pre-install
# docs # docs
docs/yarn.lock docs/yarn.lock

View File

View File

@ -231,11 +231,6 @@ async function main() {
console.log('Downloads completed.') console.log('Downloads completed.')
} }
// Ensure the downloads directory exists
if (!fs.existsSync('downloads')) {
fs.mkdirSync('downloads')
}
main().catch((err) => { main().catch((err) => {
console.error('Error:', err) console.error('Error:', err)
process.exit(1) process.exit(1)