Skip to content

Commit 27f6546

Browse files
make err a mesherror
1 parent d3cd80e commit 27f6546

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/unarchive.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ func ExtractZip(path, artifactPath string) error {
7979
defer zipReader.Close()
8080
destDir, err := filepath.Abs(path)
8181
if err != nil {
82-
return err
82+
return ErrExtractZip(err, path)
8383
}
8484
for _, file := range zipReader.File {
8585
err := func() error {

0 commit comments

Comments
 (0)