Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/update.ml
Original file line number Diff line number Diff line change
Expand Up @@ -2628,7 +2628,8 @@ let t1 = Unix.gettimeofday () in
(* Directory optimization is disabled under Windows,
as Windows does not update directory modification times
on FAT filesystems. *)
dirFastCheck = useFastChecking () && Sys.unix;
(* A.Frycze: dirFastCheck is disabled on exFAT filesystems *)
dirFastCheck = useFastChecking () && Sys.unix && not (Prefs.read Globals.fatFilesystem);
dirStamp; rescanProps; archHash = archiveHash fspath;
showStatus = not !Trace.runningasserver }
in
Expand Down