mirror of
https://github.com/docker/build-push-action.git
synced 2024-11-06 00:35:53 -05:00
replace deprecated fs.rmdir
with fs.rm
Signed-off-by: Ben Drucker <bvdrucker@gmail.com>
This commit is contained in:
parent
1cb9d22b93
commit
988cb093f2
3 changed files with 3 additions and 3 deletions
2
dist/index.js
generated
vendored
2
dist/index.js
generated
vendored
File diff suppressed because one or more lines are too long
2
dist/index.js.map
generated
vendored
2
dist/index.js.map
generated
vendored
File diff suppressed because one or more lines are too long
|
@ -83,7 +83,7 @@ async function run(): Promise<void> {
|
|||
async function cleanup(): Promise<void> {
|
||||
if (stateHelper.tmpDir.length > 0) {
|
||||
core.startGroup(`Removing temp folder ${stateHelper.tmpDir}`);
|
||||
fs.rmdirSync(stateHelper.tmpDir, {recursive: true});
|
||||
fs.rmSync(stateHelper.tmpDir, {recursive: true});
|
||||
core.endGroup();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue