diff options
author | Ethan Soucy <ethan.soucy@gmail.com> | 2021-09-30 11:01:27 -0400 |
---|---|---|
committer | Ethan Soucy <ethan.soucy@gmail.com> | 2021-09-30 12:30:07 -0400 |
commit | 0a156211d789c5192f571ae7a7288517d3be4981 (patch) | |
tree | a56f238ced6b8a6f9364935aa7bc85f1e8a79cdd | |
parent | 966b6030fa5cc31c163e344b64109eddeffc3529 (diff) | |
download | podman-0a156211d789c5192f571ae7a7288517d3be4981.tar.gz podman-0a156211d789c5192f571ae7a7288517d3be4981.tar.bz2 podman-0a156211d789c5192f571ae7a7288517d3be4981.zip |
[NO TESTS NEEDED] Fix typo in storage.conf file exists message
Signed-off-by: Ethan Soucy <ethan.soucy@gmail.com>
-rw-r--r-- | libpod/reset.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/reset.go b/libpod/reset.go index 96fa44c2f..7b25ed680 100644 --- a/libpod/reset.go +++ b/libpod/reset.go @@ -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 { |