Hello,
I am trying to release a library, and fetch the release, like so, but get an error:
zig fetch --save https://codeberg.org/removewingman/restricted-zig/releases/download/v1.0.0/restricted-v1.0.0.tar.gz
error: unsupported Content-Disposition header value: 'inline; filename="restricted-v1.0.0.tar.gz"; filename*=UTF-8''restricted-v1.0.0.tar.gz' for Content-Type=application/octet-stream
If I do this, it works:
zig fetch --save https://codeberg.org/removewingman/restricted-zig/archive/v1.0.0.tar.gz
Does anyone know why?