[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:
parent
966b6030fa
commit
0a156211d7
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in New Issue