Skip to content

Commit

Permalink
remove compression from zipping in chumpinate
Browse files Browse the repository at this point in the history
  • Loading branch information
nshaheed committed Feb 14, 2025
1 parent 8518f3b commit 7119921
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion chumpinate/Chumpinate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1154,7 +1154,9 @@ class PackageVersionChumpinate {
#ifdef MZ_ZIP_NO_COMPRESSION
int compression_level = MZ_COMPRESS_METHOD_STORE;
#else
int compression_level = MZ_COMPRESS_LEVEL_DEFAULT;
int compression_level = MZ_COMPRESS_METHOD_STORE;
// we are not doing any compression right now for consistency with builds
// int compression_level = MZ_COMPRESS_LEVEL_DEFAULT;
#endif

int zip_status =
Expand Down
2 changes: 1 addition & 1 deletion chumpinate/build-pkg-win.ck
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@import "Chumpinate"
@import "Chumpinate.chug"

// Our package version
"0.1.0" => string version;
Expand Down

0 comments on commit 7119921

Please sign in to comment.