mirror of
https://code.forgejo.org/actions/setup-node.git
synced 2026-03-24 00:18:07 +03:00
Dont fail on not being able to unlink
This commit is contained in:
parent
46111af811
commit
14304073b8
1 changed files with 1 additions and 1 deletions
|
|
@ -40,7 +40,7 @@ describe('installer tests', () => {
|
||||||
try {
|
try {
|
||||||
await io.rmRF(toolDir);
|
await io.rmRF(toolDir);
|
||||||
await io.rmRF(tempDir);
|
await io.rmRF(tempDir);
|
||||||
} finally {
|
} catch {
|
||||||
console.log('Failed to remove test directories');
|
console.log('Failed to remove test directories');
|
||||||
}
|
}
|
||||||
}, 100000);
|
}, 100000);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue