STYLE: remove uncompressed tar file after -tgz output

This commit is contained in:
Mark Olesen
2019-07-10 20:34:40 +02:00
committed by Andrew Heather
parent c54c4c8c62
commit b7d3607716

View File

@ -296,6 +296,7 @@ case "$compress" in
(tgz)
echo "Using gzip compression with tgz ending" 1>&2
echo 'gzip -c -9 "$outputDir/$tarName.tar" > "$outputDir/$tarName.tgz"'
echo 'rm -f "$outputDir/$tarName.tar"'
;;
(bz | bzip | bzip2)