Skip to content

Commit f8affb8

Browse files
Fix unavailable expunge on Windows (#447)
Fix unavailable expunge on Windows Without this commit, get: ``` File "src/top/dune", line 33, characters 0-131: 33 | (rule 34 | (targets utop-expunged.bc) 35 | (action 36 | (run %{ocaml_where}/expunge %{dep:utop.bc} %{targets} 37 | %{read-lines:modules.txt}))) Error: File unavailable: Z:/source/dkml/build/pkg/bump/.ci/o/PR/lib/ocaml/expunge ``` Co-authored-by: Etienne Millon <[email protected]>
1 parent 8da7072 commit f8affb8

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGES.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2.13.1 (Pending)
2+
----------------
3+
4+
* Fix unavailable expunge on Windows (#447, @jonahbeckford)
5+
16
2.13.0 (2023-07-03)
27
-------------------
38

src/top/dune

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
(rule
3434
(targets utop-expunged.bc)
3535
(action
36-
(run %{ocaml_where}/expunge %{dep:utop.bc} %{targets}
36+
(run %{ocaml_where}/expunge%{ext_exe} %{dep:utop.bc} %{targets}
3737
%{read-lines:modules.txt})))
3838

3939
(install

0 commit comments

Comments
 (0)