command/track: Print() when searching for files

This commit is contained in:
Taylor Blau 2016-07-01 14:41:31 -06:00
parent 75c40be709
commit f516dfecc7

@ -91,11 +91,13 @@ ArgsLoop:
// Since all `git-lfs track` calls are relative to the root of
// the repository, the leading slash is simply removed for its
// implicit counterpart.
Print("Searching for files matching pattern: %s", pattern)
gittracked, err := git.GetTrackedFiles(pattern)
if err != nil {
LoggedError(err, "Error getting git tracked files")
continue
}
Print("Found %d files matching pattern: %s", len(gittracked), pattern)
now := time.Now()
var matchedBlocklist bool