You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 27, 2025. It is now read-only.
Recent versions of xdelta3 apply some sort of secondary compression by default. xdelta-sharp clearly does not support this (throws exception about secondary compressor). I've spent couple hours fighting this issue, so i'm sharing my workaround for anyone who might be struggling with it.
Issue can be avoided by using -S argument of xdelta3 to disable secondary compression:
Recent versions of xdelta3 apply some sort of secondary compression by default.
xdelta-sharpclearly does not support this (throws exception about secondary compressor). I've spent couple hours fighting this issue, so i'm sharing my workaround for anyone who might be struggling with it.Issue can be avoided by using
-Sargument of xdelta3 to disable secondary compression:xdelta3 -e -S -s original_file modified_file output_patchMight be worth mentioning in docs or in exception message itself?