Skip to content

Commit 1901f83

Browse files
committed
tests: print error output if something goes wrong with untar
1 parent 23a0bb4 commit 1901f83

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

test/helper_tools_downloader.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -658,6 +658,7 @@ func downloadAndUnpack(url string) (*paths.Path, []os.FileInfo, error) {
658658
cmd := buildUnpackCmd(archiveFilePath)
659659
out, err := cmd.CombinedOutput()
660660
if err != nil {
661+
fmt.Println(string(out))
661662
return nil, nil, i18n.WrapError(err)
662663
}
663664
if len(out) > 0 {

0 commit comments

Comments
 (0)