Skip to content

Commit

Permalink
Update internal/saucecloud/imagerunner.go
Browse files Browse the repository at this point in the history
Co-authored-by: Alex Plischke <[email protected]>
  • Loading branch information
tianfeng92 and alexplischke authored Nov 3, 2023
1 parent f058b0e commit 3955c56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/saucecloud/imagerunner.go
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ func (r *ImgRunner) DownloadArtifacts(runnerID, suiteName, status string, passed
for _, pattern := range r.Project.Artifacts.Download.Match {
if glob.Glob(pattern, f.Name) {
if err = szip.Extract(dir, f); err != nil {
log.Err(err).Msgf("Unable to extract file '%s'", f.Name)
log.Err(err).Msgf("Unable to extract file %q", f.Name)
} else {
artifacts = append(artifacts, filepath.Join(dir, f.Name))
}
Expand Down

0 comments on commit 3955c56

Please sign in to comment.