We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 181176f commit 9a457bdCopy full SHA for 9a457bd
bundler/src/timestamp.rs
@@ -23,7 +23,7 @@ pub fn determine_timestamps(
23
.par_iter()
24
.map(|p| {
25
if has_git {
26
- timestamp_for_path_with_git(p)
+ timestamp_for_path_with_git(p).or_else(|_| timestamp_for_path_with_fs(p))
27
} else {
28
timestamp_for_path_with_fs(p)
29
}
0 commit comments