Skip to content

Commit e27cc55

Browse files
committed
Fixed error msg
1 parent 6afa410 commit e27cc55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gzip.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ func GUnzip(src, dest *Path) error {
5151

5252
in, err := gzip.NewReader(gzIn)
5353
if err != nil {
54-
return errors.Wrap(err, "decoding "+dest.String())
54+
return errors.Wrap(err, "decoding "+src.String())
5555
}
5656
defer in.Close()
5757

0 commit comments

Comments
 (0)