mirror of
https://github.com/gradle/gradle-build-action.git
synced 2024-11-22 09:02:50 +00:00
Remove use of deprecated fs.rmdir
Using fs.rm({recursive: true}) instead. Fixes #502
This commit is contained in:
parent
50f436c485
commit
b47aad4750
5 changed files with 5 additions and 5 deletions
2
dist/main/index.js
vendored
2
dist/main/index.js
vendored
|
@ -68588,7 +68588,7 @@ function tryDelete(file) {
|
|||
try {
|
||||
const stat = fs.lstatSync(file);
|
||||
if (stat.isDirectory()) {
|
||||
fs.rmdirSync(file, { recursive: true });
|
||||
fs.rmSync(file, { recursive: true });
|
||||
}
|
||||
else {
|
||||
fs.unlinkSync(file);
|
||||
|
|
2
dist/main/index.js.map
vendored
2
dist/main/index.js.map
vendored
File diff suppressed because one or more lines are too long
2
dist/post/index.js
vendored
2
dist/post/index.js
vendored
|
@ -67639,7 +67639,7 @@ function tryDelete(file) {
|
|||
try {
|
||||
const stat = fs.lstatSync(file);
|
||||
if (stat.isDirectory()) {
|
||||
fs.rmdirSync(file, { recursive: true });
|
||||
fs.rmSync(file, { recursive: true });
|
||||
}
|
||||
else {
|
||||
fs.unlinkSync(file);
|
||||
|
|
2
dist/post/index.js.map
vendored
2
dist/post/index.js.map
vendored
File diff suppressed because one or more lines are too long
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue