diff options
author | Paul Holzinger <pholzing@redhat.com> | 2022-03-09 19:14:24 +0100 |
---|---|---|
committer | Paul Holzinger <pholzing@redhat.com> | 2022-03-09 20:02:10 +0100 |
commit | 30bf065c3ffc16214e820e8568387e4561b5f83a (patch) | |
tree | 386412f3f34007509ff7db71e316f539eabc85a8 /pkg/machine | |
parent | 418ab2e5e154cb0df13f2e901cf4aea31a5cd0a9 (diff) | |
download | podman-30bf065c3ffc16214e820e8568387e4561b5f83a.tar.gz podman-30bf065c3ffc16214e820e8568387e4561b5f83a.tar.bz2 podman-30bf065c3ffc16214e820e8568387e4561b5f83a.zip |
Use github.com/vbauerster/mpb/v7 in pkg/machine
We already use v7 in c/image so podman should use the same version to
prevent duplication.
This saves 170 KB binary size.
[NO NEW TESTS NEEDED]
Signed-off-by: Paul Holzinger <pholzing@redhat.com>
Diffstat (limited to 'pkg/machine')
-rw-r--r-- | pkg/machine/pull.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/machine/pull.go b/pkg/machine/pull.go index 280b47f96..cf1e708b1 100644 --- a/pkg/machine/pull.go +++ b/pkg/machine/pull.go @@ -19,8 +19,8 @@ import ( "github.com/containers/storage/pkg/archive" "github.com/sirupsen/logrus" "github.com/ulikunitz/xz" - "github.com/vbauerster/mpb/v6" - "github.com/vbauerster/mpb/v6/decor" + "github.com/vbauerster/mpb/v7" + "github.com/vbauerster/mpb/v7/decor" ) // GenericDownload is used when a user provides a URL |