2 May
2026
2 May
'26
1:42 a.m.
On Fri, 1 May 2026, Tom Ellis wrote:
Thanks, I fixed the bug. You can get the fixed version from:
https://github.com/tomjaguarpaw/ad/blob/353fd275123a1ca50c7981349ec25c3997d4...
Please let me know if it works. (I included a main for testing purposes, but you still just need convertZipToTar and its dependencies.)
It works indeed, now! That is, you are in a way able to convert Conduits to your Bluefin transformers?
The bug was that I was using Data.Conduit.List.isolate:
https://hackage-content.haskell.org/package/conduit-1.3.6.1/docs/Data-Condui...
but I should have used Data.Conduit.Binary.isolate:
https://hackage-content.haskell.org/package/conduit-extra-1.3.8/docs/Data-Co...
I see, that's easy to mix up.