Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
creativeprojects committed Jun 18, 2024
1 parent 76dfc49 commit 52c86e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions filesearch/filesearch.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ var (
}
)

var fs afero.Fs
var fs afero.Fs // we could probably change the implementation to use fs.FS instead

func init() {
fs = afero.NewOsFs()
Expand Down Expand Up @@ -191,7 +191,7 @@ func FindResticBinary(configLocation string) (string, error) {
return filename, nil
}
}
clog.Tracef("count not find restic binary %q in any of these locations: %s", binaryFile, strings.Join(paths, ", "))
clog.Tracef("could not find restic binary %q in any of these locations: %s", binaryFile, strings.Join(paths, ", "))

// Last resort, search from the OS PATH
filename, err := exec.LookPath(binaryFile)
Expand Down

0 comments on commit 52c86e4

Please sign in to comment.