summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorStefan Weil <sw@weilnetz.de>2021-10-24 22:35:47 +0200
committerMatthew Heon <matthew.heon@pm.me>2021-11-12 11:08:25 -0500
commit2ff511798c44baeb7b3f6ccc413ec8eff24cfb4e (patch)
tree12528a2cbdb7d613d3c0aae505addc535f227f57 /cmd
parenteead06b9de022f16b2555614fda2f34a9724875a (diff)
downloadpodman-2ff511798c44baeb7b3f6ccc413ec8eff24cfb4e.tar.gz
podman-2ff511798c44baeb7b3f6ccc413ec8eff24cfb4e.tar.bz2
podman-2ff511798c44baeb7b3f6ccc413ec8eff24cfb4e.zip
Fix some typos in documentation and comments (found by codespell)
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Diffstat (limited to 'cmd')
-rw-r--r--cmd/podman/images/scp.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/images/scp.go b/cmd/podman/images/scp.go
index 176563440..c89a090bf 100644
--- a/cmd/podman/images/scp.go
+++ b/cmd/podman/images/scp.go
@@ -185,7 +185,7 @@ func saveToRemote(image, localFile string, tag string, uri *urlP.URL, iden strin
return errors.Wrapf(define.ErrInvalidArg, "Renaming of an image is currently not supported")
}
podman := os.Args[0]
- run := podman + " image save " + image + " --format=oci-archive --output=" + remoteFile // run ssh image load of the file copied via scp. Files are reverse in thie case...
+ run := podman + " image save " + image + " --format=oci-archive --output=" + remoteFile // run ssh image load of the file copied via scp. Files are reverse in this case...
_, err = connection.ExecRemoteCommand(dial, run)
if err != nil {
return nil