Skip to content

Commit 7e00632

Browse files
authored
Merge pull request #1252 from liangxin1300/20230922_crm_report_compress_crmsh4.5
[crmsh-4.5] Fix: report: Pick 'gzip' as the first compress prog for cross-platfor…
2 parents 100fb67 + 2b6b234 commit 7e00632

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crmsh/report/utillib.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1126,7 +1126,7 @@ def pe_to_dot(pe_file):
11261126

11271127

11281128
def pick_compress():
1129-
constants.COMPRESS_PROG = pick_first(["bzip2", "gzip", "xz"])
1129+
constants.COMPRESS_PROG = pick_first(["gzip", "bzip2", "xz"])
11301130
if constants.COMPRESS_PROG:
11311131
if constants.COMPRESS_PROG == "xz":
11321132
constants.COMPRESS_EXT = ".xz"

0 commit comments

Comments
 (0)