async function tryDelete()

in script/clean.ts [43:56]


async function tryDelete(target: string) {
    try {
        if (!exists(target)) {
            console.log(
                `Could not access '${target}', probably because it does not exist. Skipping clean for this path.`
            )
            return
        }

        await rdelete(target)
    } catch (e) {
        console.error(`Could not clean '${target}': ${String(e)}`)
    }
}