open-telemetry / opentelemetry-cpp-contrib

https://opentelemetry.io/
Apache License 2.0
121 stars 130 forks source link

Release v1.0.4 has the wrong format or file ending #341

Closed Paso closed 2 months ago

Paso commented 7 months ago

The newest release binary v1.0.4 is called .tgz like the previous ones but the file format is not tar+gz. I could extract it by first using "unzip" and then "tar -xz" so it's probably a tar+gz+zip which doesn't make much sense.

mmmvvvppp commented 6 months ago

I'd agree with your assessment of the zip around a tar+gz. unzip -Z identifies the downloaded archive as a zip:

unzip -Z opentelemetry-webserver-sdk-x64-linux.tgz 
Archive:  opentelemetry-webserver-sdk-x64-linux.tgz
Zip file size: 14423713 bytes, number of entries: 1
?rw-r--r--  2.0 unx 14560293 bl defN 23-Nov-20 06:50 opentelemetry-webserver-sdk-x64-linux.tgz
1 file, 14560293 bytes uncompressed, 14423517 bytes compressed:  0.9%

unzip -p opentelemetry-webserver-sdk-x64-linux.tgz | tar -zx does work for me. Thank you.

DebajitDas commented 2 months ago

Updated the file. It should be tar + gz as expected.