mirror of
https://github.com/AikidoSec/safe-chain.git
synced 2026-05-26 12:10:49 +00:00
Write log when certbundle could not be deleted
This commit is contained in:
parent
527e3cd70a
commit
47377711b8
1 changed files with 2 additions and 2 deletions
|
|
@ -119,8 +119,8 @@ export function cleanupCertBundle() {
|
|||
if (bundlePath) {
|
||||
try {
|
||||
fs.unlinkSync(bundlePath);
|
||||
} catch {
|
||||
// Ignore errors (file may already be gone)
|
||||
} catch (err) {
|
||||
ui.writeVerbose(`Failed to cleanup the create bundle at ${bundlePath}`, err)
|
||||
}
|
||||
bundlePath = null;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue