We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70120a5 commit 892b13dCopy full SHA for 892b13d
src/interceptors/docker/docker-proxy.ts
@@ -36,7 +36,7 @@ if (process.platform !== 'win32') {
36
addShutdownHandler(async () => Promise.all(
37
(await readDir(os.tmpdir()))
38
.filter((filename) => filename.match(/^httptoolkit-\d+-docker.sock$/))
39
- .map((filename) => deleteFile(path.join(os.tmpdir(), filename)))
+ .map((filename) => deleteFile(path.join(os.tmpdir(), filename)).catch(() => {}))
40
));
41
}
42
0 commit comments