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 b9d4a0d commit 9b63fa4Copy full SHA for 9b63fa4
CHANGES.md
@@ -51,6 +51,9 @@ Unreleased
51
- Workaround incorrect exception raised by Unix.utimes (OCaml PR#8857) in
52
Path.touch on Windows (#4223, @dra27)
53
54
+- Cleanup temporary files after running `$ dune exec`. (#4260, fixes #4243,
55
+ @rgrinberg)
56
+
57
2.8.2 (21/01/2021)
58
------------------
59
src/stdune/proc.ml
@@ -13,5 +13,6 @@ let restore_cwd_and_execve prog argv ~env =
13
| WSTOPPED _ -> assert false
14
else (
15
ignore (Unix.sigprocmask SIG_SETMASK [] : int list);
16
+ Stdlib.do_at_exit ();
17
Unix.execve prog argv env
18
)
0 commit comments