[NO TESTS NEEDED] Fix typo in storage.conf file exists message

Signed-off-by: Ethan Soucy <ethan.soucy@gmail.com>
This commit is contained in:
Ethan Soucy 2021-09-30 11:01:27 -04:00
parent 966b6030fa
commit 0a156211d7
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ func (r *Runtime) Reset(ctx context.Context) error {
if storageConfPath, err := storage.DefaultConfigFile(rootless.IsRootless()); err == nil {
if _, err = os.Stat(storageConfPath); err == nil {
fmt.Printf("A storage.conf file exists at %s\n", storageConfPath)
fmt.Println("You should remove this file if you did not modified the configuration.")
fmt.Println("You should remove this file if you did not modify the configuration.")
}
} else {
if prevError != nil {