Improperly compressed 1.17.7 archives
Posted: Thu Aug 15, 2024 11:59 pm
Seems the 1.17.7 release isn't packaged properly.
However, if gzip -d it first,
It works fine. Same for the oss tar.gz. Not a big deal, and a utility like Ark handles it fine, but with the CLI tar utility, it fails. Something to watch out for on the next release, and an FYI for anyone having issues.
(Side note, this is specific to this release, nothing wrong with my tar command. Works fine with previous releases such as 1.17.6)
Code: Select all
$ tar xvf makemkv-bin-1.17.7.tar.gz
tar: This does not look like a tar archive
tar: Skipping to next header
tar: Exiting with failure status due to previous errors
Code: Select all
$ gzip -d makemkv-bin-1.17.7.tar.gz
$ tar xvf makemkv-bin-1.17.7.tar
makemkv-bin-1.17.7/
makemkv-bin-1.17.7/Makefile
makemkv-bin-1.17.7/bin/
makemkv-bin-1.17.7/bin/arm64/
makemkv-bin-1.17.7/bin/arm64/makemkvcon
makemkv-bin-1.17.7/bin/armhf/
makemkv-bin-1.17.7/bin/armhf/makemkvcon
makemkv-bin-1.17.7/bin/i386/
makemkv-bin-1.17.7/bin/i386/makemkvcon
makemkv-bin-1.17.7/bin/amd64/
makemkv-bin-1.17.7/bin/amd64/makemkvcon
makemkv-bin-1.17.7/src/
makemkv-bin-1.17.7/src/eula_en_linux.txt
makemkv-bin-1.17.7/src/share/
makemkv-bin-1.17.7/src/share/appdata.tar
makemkv-bin-1.17.7/src/share/blues.policy
makemkv-bin-1.17.7/src/share/blues.jar
makemkv-bin-1.17.7/src/ask_eula.sh
(Side note, this is specific to this release, nothing wrong with my tar command. Works fine with previous releases such as 1.17.6)