diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-03-30 00:37:36 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-30 00:37:36 +0000 |
commit | 4fe1ce154f364932129fb6d53c9dbe5b374ed38d (patch) | |
tree | c0481ca3d8e88535ef2a12463cd73bda722a5a50 /pkg/machine/pull.go | |
parent | b9e064ab84044f3db25e48384a1bd6fe5dc6ecdc (diff) | |
parent | 870beaf137d6afb674bbd1743eaa8a761dd54511 (diff) | |
download | podman-4fe1ce154f364932129fb6d53c9dbe5b374ed38d.tar.gz podman-4fe1ce154f364932129fb6d53c9dbe5b374ed38d.tar.bz2 podman-4fe1ce154f364932129fb6d53c9dbe5b374ed38d.zip |
Merge pull request #9846 from afbjorklund/qemu-arm64
[NO TESTS NEEDED] Add machine support for qemu-system-aarch64 on linux
Diffstat (limited to 'pkg/machine/pull.go')
-rw-r--r-- | pkg/machine/pull.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/machine/pull.go b/pkg/machine/pull.go index 39dde15b8..3f54f76ff 100644 --- a/pkg/machine/pull.go +++ b/pkg/machine/pull.go @@ -38,7 +38,7 @@ func DownloadVMImage(downloadURL fmt.Stringer, localImagePath string) error { }() if resp.StatusCode != http.StatusOK { - return fmt.Errorf("error downloading VM image: %s", resp.Status) + return fmt.Errorf("error downloading VM image %s: %s", downloadURL, resp.Status) } size := resp.ContentLength urlSplit := strings.Split(downloadURL.String(), "/") |