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 <me@emillon.org>
This commit is contained in:
parent
8da707283f
commit
f8affb8cfb
|
@ -1,3 +1,8 @@
|
||||||
|
2.13.1 (Pending)
|
||||||
|
----------------
|
||||||
|
|
||||||
|
* Fix unavailable expunge on Windows (#447, @jonahbeckford)
|
||||||
|
|
||||||
2.13.0 (2023-07-03)
|
2.13.0 (2023-07-03)
|
||||||
-------------------
|
-------------------
|
||||||
|
|
||||||
|
|
|
@ -33,7 +33,7 @@
|
||||||
(rule
|
(rule
|
||||||
(targets utop-expunged.bc)
|
(targets utop-expunged.bc)
|
||||||
(action
|
(action
|
||||||
(run %{ocaml_where}/expunge %{dep:utop.bc} %{targets}
|
(run %{ocaml_where}/expunge%{ext_exe} %{dep:utop.bc} %{targets}
|
||||||
%{read-lines:modules.txt})))
|
%{read-lines:modules.txt})))
|
||||||
|
|
||||||
(install
|
(install
|
||||||
|
|
Loading…
Reference in New Issue