Skip to content

Commit fb4ff3d

Browse files
make err a mesherror
Signed-off-by: Muhammad Akewukanwo <muhammadolammi@gmail.com>
1 parent d3cd80e commit fb4ff3d

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)