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 61357d3 commit c51c7f1Copy full SHA for c51c7f1
packages/cli-v3/src/utilities/tempDirectories.ts
@@ -37,7 +37,7 @@ export function getTmpDir(
37
// This sometimes fails on Windows with EBUSY
38
}
39
};
40
- const removeExitListener = keep ? () => {} : onExit(removeDir);
+ const removeExitListener = keep || process.env.KEEP_TMP_DIRS ? () => {} : onExit(removeDir);
41
42
return {
43
path: tmpDir,
0 commit comments