(watcher *fetchWatcher)
| 335 | } |
| 336 | |
| 337 | func fetchAll(watcher *fetchWatcher) bool { |
| 338 | pointers := scanAll() |
| 339 | printProgress(tr.Tr.Get("Fetching all references...")) |
| 340 | return fetch(pointers, watcher) |
| 341 | } |
| 342 | |
| 343 | func scanAll() []*lfs.WrappedPointer { |
| 344 | // This could be a long process so use the chan version & report progress |
no test coverage detected