This does not work:
curl -sL https://api.github.com/repos/mirror/busybox/tarball/master |
busybox64 gzip | busybox64 tar -xf -

But this does (note the lack of using busybox64 on the last part):
curl -sL https://api.github.com/repos/mirror/busybox/tarball/master |
busybox64 gzip | tar -xf -

Tried using it with a non-busybox version of gzip, had the same
result, busybox64 tar couldn't handle it but every other version of
tar I have could.
_______________________________________________
busybox mailing list
busybox@busybox.net
http://lists.busybox.net/mailman/listinfo/busybox

Reply via email to