diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2021-09-30 14:25:59 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-30 14:25:59 -0400 |
commit | 1f3e2ed74ff833a25fcf7b0f796b6a9569cf362d (patch) | |
tree | 9ed7f9be5e97e3f537ac1413923871c2a59795f7 | |
parent | 16b9b51ae16bd73932053328363ae0da281b8a19 (diff) | |
parent | 0a156211d789c5192f571ae7a7288517d3be4981 (diff) | |
download | podman-1f3e2ed74ff833a25fcf7b0f796b6a9569cf362d.tar.gz podman-1f3e2ed74ff833a25fcf7b0f796b6a9569cf362d.tar.bz2 podman-1f3e2ed74ff833a25fcf7b0f796b6a9569cf362d.zip |
Merge pull request #11807 from emsoucy/main
Fix typo in storage.conf file exists message
-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 { |