Fix integration test (#103)

It broke because the `tar` tldr page was changed upstream :)
This commit is contained in:
Danilo Bargen 2020-02-28 00:20:17 +01:00 committed by GitHub
commit ed3e4baac5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,6 +12,10 @@
`tar czf {{target.tar.gz}} {{file1}} {{file2}} {{file3}}`
- Create a gzipped archive from a directory using relative paths:
`tar czf {{target.tar.gz}} -C {{path/to/directory}} .`
- Extract a (compressed) archive into the current directory:
`tar xf {{source.tar[.gz|.bz2|.xz]}}`