aboutsummaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorQi Wang <qiwan@redhat.com>2020-11-23 16:27:21 -0500
committerQi Wang <qiwan@redhat.com>2020-11-24 13:48:30 -0500
commit05f7c95568853bb76b7c74899ceff4d0a871062c (patch)
tree4c4b5c8a4babf59f51fd2b352ae38f4664e8501d /cmd
parent4ebd9d9191606319f618d6e7e552256c07fff2c4 (diff)
downloadpodman-05f7c95568853bb76b7c74899ceff4d0a871062c.tar.gz
podman-05f7c95568853bb76b7c74899ceff4d0a871062c.tar.bz2
podman-05f7c95568853bb76b7c74899ceff4d0a871062c.zip
[CI:DOCS] fix misleading save/load usage
Fix the container archive description in podman save/load docs that may lead to misusing the save/load instead of import/export for containers. Signed-off-by: Qi Wang <qiwan@redhat.com>
Diffstat (limited to 'cmd')
-rw-r--r--cmd/podman/images/load.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/images/load.go b/cmd/podman/images/load.go
index a7884f4c5..a24f46781 100644
--- a/cmd/podman/images/load.go
+++ b/cmd/podman/images/load.go
@@ -23,7 +23,7 @@ var (
loadDescription = "Loads an image from a locally stored archive (tar file) into container storage."
loadCommand = &cobra.Command{
Use: "load [options] [NAME[:TAG]]",
- Short: "Load an image from container archive",
+ Short: "Load image(s) from a tar archive",
Long: loadDescription,
RunE: load,
Args: cobra.MaximumNArgs(1),