fix: rebuild errors on windows ()

This commit is contained in:
kabirgh 2024-01-15 16:39:16 +00:00 committed by GitHub
parent f36376503a
commit 8eec47c340
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 27 additions and 5 deletions
quartz/cli

View file

@ -3,6 +3,7 @@ import chalk from "chalk"
import { contentCacheFolder } from "./constants.js"
import { spawnSync } from "child_process"
import fs from "fs"
import { rimraf } from "rimraf"
export function escapePath(fp) {
return fp
@ -52,3 +53,11 @@ export async function popContentFolder(contentFolder) {
})
await fs.promises.rm(contentCacheFolder, { force: true, recursive: true })
}
export async function rmrf(path) {
if (os.platform() == "win32") {
return rimraf.windows(path)
} else {
return rimraf(path)
}
}