mirror of
https://github.com/actions/setup-node.git
synced 2025-04-24 12:22:12 +00: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
Reference in a new issue