summaryrefslogtreecommitdiff
path: root/pkg/domain/infra/abi
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-08-11 19:53:17 +0000
committerGitHub <noreply@github.com>2022-08-11 19:53:17 +0000
commit57387da27e43e7bd7973d91975b10a66aff134e8 (patch)
tree5b70ebe1aeae69f1542820f191f7fc9488a50663 /pkg/domain/infra/abi
parent1798cccf3ea3145a82c0948437758a865d7c4c94 (diff)
parenta4efd401cd87d98dced4f4eda41a8a1b86e72379 (diff)
downloadpodman-57387da27e43e7bd7973d91975b10a66aff134e8.tar.gz
podman-57387da27e43e7bd7973d91975b10a66aff134e8.tar.bz2
podman-57387da27e43e7bd7973d91975b10a66aff134e8.zip
Merge pull request #15285 from YoitoFes/fix-15210
remote manifest push: show copy progress
Diffstat (limited to 'pkg/domain/infra/abi')
-rw-r--r--pkg/domain/infra/abi/manifest.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkg/domain/infra/abi/manifest.go b/pkg/domain/infra/abi/manifest.go
index 4b10d9b18..e0c11267e 100644
--- a/pkg/domain/infra/abi/manifest.go
+++ b/pkg/domain/infra/abi/manifest.go
@@ -321,6 +321,7 @@ func (ir *ImageEngine) ManifestPush(ctx context.Context, name, destination strin
pushOptions.SignBySigstorePrivateKeyFile = opts.SignBySigstorePrivateKeyFile
pushOptions.SignSigstorePrivateKeyPassphrase = opts.SignSigstorePrivateKeyPassphrase
pushOptions.InsecureSkipTLSVerify = opts.SkipTLSVerify
+ pushOptions.Writer = opts.Writer
compressionFormat := opts.CompressionFormat
if compressionFormat == "" {
@@ -341,7 +342,7 @@ func (ir *ImageEngine) ManifestPush(ctx context.Context, name, destination strin
if opts.All {
pushOptions.ImageListSelection = cp.CopyAllImages
}
- if !opts.Quiet {
+ if !opts.Quiet && pushOptions.Writer == nil {
pushOptions.Writer = os.Stderr
}