Update iso_config.go

use defaultGetterClient instead of getter.DefaultClient
This commit is contained in:
Adrien Delorme 2020-02-11 12:07:06 +01:00
parent cc3d941853
commit 08f394604c
1 changed files with 1 additions and 2 deletions

View File

@ -9,7 +9,6 @@ import (
"fmt" "fmt"
"strings" "strings"
getter "github.com/hashicorp/go-getter/v2"
"github.com/hashicorp/packer/template/interpolate" "github.com/hashicorp/packer/template/interpolate"
) )
@ -163,7 +162,7 @@ func (c *ISOConfig) Prepare(*interpolate.Context) (warnings []string, errs []err
if c.ISOChecksumURL != "" { if c.ISOChecksumURL != "" {
url = c.ISOChecksumURL url = c.ISOChecksumURL
} }
cksum, err := getter.DefaultClient.ChecksumFromFile(context.TODO(), url, c.ISOUrls[0]) cksum, err := defaultGetterClient.ChecksumFromFile(context.TODO(), url, c.ISOUrls[0])
if err != nil { if err != nil {
errs = append(errs, fmt.Errorf("Couldn't extract checksum from checksum file: %v", err)) errs = append(errs, fmt.Errorf("Couldn't extract checksum from checksum file: %v", err))
} else { } else {