File tree 2 files changed +8
-3
lines changed
2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1
1
Unreleased
2
2
----------
3
3
4
+ - Add a ` DUNE_DIFF_COMMAND ` environment variable to match ` --diff-command `
5
+ command-line parameter (@raphael-proust , fix #5369 , #5375 )
6
+
4
7
- Add support for odoc-link rules (#5045 , @lubegasimon )
5
8
6
9
- Dune will no longer generate documentation for hidden modules (#5045 ,
Original file line number Diff line number Diff line change @@ -889,13 +889,15 @@ let term ~default_root_is_cwd =
889
889
~env: (Arg. env_var ~doc " DUNE_BUILD_DIR" )
890
890
~doc )
891
891
and + diff_command =
892
+ let doc = " Shell command to use to diff files.\n \
893
+ \ Use - to disable printing the diff."
894
+ in
892
895
Arg. (
893
896
value
894
897
& opt (some string ) None
895
898
& info [ " diff-command" ] ~docs
896
- ~doc:
897
- " Shell command to use to diff files.\n \
898
- \ Use - to disable printing the diff." )
899
+ ~env: (Arg. env_var ~doc " DUNE_DIFF_COMMAND" )
900
+ ~doc )
899
901
and + stats_trace_file =
900
902
Arg. (
901
903
value
You can’t perform that action at this time.
0 commit comments