diff options
| author | 魏曹先生 <1992414357@qq.com> | 2025-11-23 15:25:42 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2025-11-23 15:25:42 +0800 |
| commit | e011ca752bd4befc73e33c72e59e4e6492ac1aa7 (patch) | |
| tree | 1b3ee1f34110505e29156130b236641c4cb07de6 /src/bin | |
| parent | c9f3fa4d2334d3d74f14e8fc4b0de17f3d11c651 (diff) | |
Fix type annotation in file tracking collection
Diffstat (limited to 'src/bin')
| -rw-r--r-- | src/bin/jv.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/jv.rs b/src/bin/jv.rs index 717ad34..e71b6d6 100644 --- a/src/bin/jv.rs +++ b/src/bin/jv.rs @@ -2072,7 +2072,7 @@ async fn jv_track(args: TrackFileArgs) { files .iter() .map(|f| current_dir().unwrap().join(f)) - .collect() + .collect::<Vec<_>>() } else { println!("{}", md(t!("jv.track"))); return; |
