mirror of
https://github.com/docker/build-push-action.git
synced 2024-11-10 04:15:40 +01: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
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> {
|
async function cleanup(): Promise<void> {
|
||||||
if (stateHelper.tmpDir.length > 0) {
|
if (stateHelper.tmpDir.length > 0) {
|
||||||
core.startGroup(`Removing temp folder ${stateHelper.tmpDir}`);
|
core.startGroup(`Removing temp folder ${stateHelper.tmpDir}`);
|
||||||
fs.rmdirSync(stateHelper.tmpDir, {recursive: true});
|
fs.rmSync(stateHelper.tmpDir, {recursive: true});
|
||||||
core.endGroup();
|
core.endGroup();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user