diff --git a/common/download.go b/common/download.go index 16c0724c3..184624ffe 100644 --- a/common/download.go +++ b/common/download.go @@ -117,6 +117,7 @@ func (d *DownloadClient) Get() (string, error) { var finalPath string if url.Scheme == "file" && !d.config.CopyFile { finalPath = url.Path + log.Printf("Using local file: %s", finalPath) // Remove forward slash on absolute Windows file URLs before processing if runtime.GOOS == "windows" && len(finalPath) > 0 && finalPath[0] == '/' {