diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-10-25 09:04:50 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-25 09:04:50 +0000 |
commit | 6618d574b93ed179b5044fa2e283ddeb9b927446 (patch) | |
tree | 2d402ab53772ec56e159e4f557aff862e4bf20a2 /cmd | |
parent | 283ce3de6c1823743b8a2dd7f7897cdc1a5c9815 (diff) | |
parent | 24c83980e5b0da62b1cee88b0c669f06cf498eb0 (diff) | |
download | podman-6618d574b93ed179b5044fa2e283ddeb9b927446.tar.gz podman-6618d574b93ed179b5044fa2e283ddeb9b927446.tar.bz2 podman-6618d574b93ed179b5044fa2e283ddeb9b927446.zip |
Merge pull request #12078 from stweil/typos
[CI:DOCS Fix some typos in documentation and comments (found by codespell)
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/podman/images/scp.go | 2 |
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 |