mirror of
https://github.com/gradle/actions.git
synced 2025-11-26 17:09:10 +08:00
Remove use of deprecated fs.rmdir
Using fs.rm({recursive: true}) instead.
Fixes #502
This commit is contained in:
@@ -223,7 +223,7 @@ export async function tryDelete(file: string): Promise<void> {
|
||||
try {
|
||||
const stat = fs.lstatSync(file)
|
||||
if (stat.isDirectory()) {
|
||||
fs.rmdirSync(file, {recursive: true})
|
||||
fs.rmSync(file, {recursive: true})
|
||||
} else {
|
||||
fs.unlinkSync(file)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user