We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
fs.rmdir
1 parent b6ac81d commit 9972a4fCopy full SHA for 9972a4f
src/swiftorg.ts
@@ -14,7 +14,7 @@ export class Swiftorg {
14
try {
15
await fs.access(swiftorg)
16
core.debug(`Removing existing "${swiftorg}" directory`)
17
- await fs.rmdir(swiftorg, {recursive: true})
+ await fs.rm(swiftorg, {recursive: true})
18
} catch (error) {
19
core.debug(`Failed removing "${swiftorg}" with "${error}"`)
20
}
0 commit comments