mirror of
https://github.com/ZetaKebab/quartz.git
synced 2025-06-22 00:34:37 +00:00
fix: rebuild errors on windows (#692)
This commit is contained in:
@ -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)
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user