Skip to content

Commit fe7968d

Browse files
committed
Fixed compilation error.
Signed-off-by: Pavel Senchanka <pavel.senchanka@gmail.com>
1 parent b6612b1 commit fe7968d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/main.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -810,7 +810,7 @@ let fswatch_command root_path =
810810
not reliable (at least on Linux), so don't try to use it, instead act on all events.
811811
*)
812812
let use_fswatch =
813-
let excludes = List.(map (fun x -> ["--exclude"; x]) excludes |> concat) in
813+
let excludes = List.(map ~f:(fun x -> ["--exclude"; x]) excludes |> concat) in
814814
let args = [ "-r"; path; "-1" ] @ excludes in
815815
"fswatch", args
816816
in

0 commit comments

Comments
 (0)