diff options
| author | Stefan Boberg <[email protected]> | 2025-03-12 19:04:42 +0100 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2025-03-12 19:04:42 +0100 |
| commit | 714278a8ede293eaa9014fd5cbc84632c65f0f95 (patch) | |
| tree | 5e47e322e5384556f4da55fe41deacd3da4129b0 | |
| parent | changed ReadDeltaArray to return the number of entries in the input array (diff) | |
| download | zen-sb/build-part-delta.tar.xz zen-sb/build-part-delta.zip | |
Disable delta encoding by defaultsb/build-part-delta
| -rw-r--r-- | src/zen/cmds/builds_cmd.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/zen/cmds/builds_cmd.cpp b/src/zen/cmds/builds_cmd.cpp index 57739cd94..088a4d641 100644 --- a/src/zen/cmds/builds_cmd.cpp +++ b/src/zen/cmds/builds_cmd.cpp @@ -703,7 +703,7 @@ namespace { #endif // EXTRA_VERIFY } - bool g_UseDeltaEncoding = true; + static bool g_UseDeltaEncoding = false; void WriteBuildContentToCompactBinary(CbObjectWriter& PartManifestWriter, const SourcePlatform Platform, @@ -6876,7 +6876,7 @@ BuildsCommand::BuildsCommand() m_UploadOptions.add_option("", "", "allow-deltaencoding", - "Allow efficient encoding of build manifest. Defaults to true.", + "Allow efficient encoding of build manifest. Defaults to false.", cxxopts::value(g_UseDeltaEncoding), "<allowdeltaencoding>"); |