Skip to content

Commit

Permalink
Fix mac test
Browse files Browse the repository at this point in the history
  • Loading branch information
reynir committed Jun 21, 2023
1 parent de1c2c9 commit 6fcff17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/tarball.t
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ Tests decoding of various tar formats
$ if tar --version | grep -q GNU; then
> tar -cz --format=gnu -f v-gnu.tar.gz archive/
> otar list v-gnu.tar.gz
> else printf "archive/ (0 byte)\narchive/foo (12.00 B)\n"; fi
> else printf "archive/ (Directory, 0 byte)\narchive/foo (Normal, 12.00 B)\n"; fi
archive/ (Directory, 0 byte)
archive/foo (Normal, 12.00 B)
$ if tar --version | grep -q GNU; then
> tar -cz --format=oldgnu -f v-oldgnu.tar.gz archive/
> otar list v-oldgnu.tar.gz
> else printf "archive/ (0 byte)\narchive/foo (12.00 B)\n"; fi
> else printf "archive/ (Directory, 0 byte)\narchive/foo (Normal, 12.00 B)\n"; fi
archive/ (Directory, 0 byte)
archive/foo (Normal, 12.00 B)
$ tar -cz --format=pax -f v-pax.tar.gz archive/
Expand Down

0 comments on commit 6fcff17

Please sign in to comment.