Skip to content

Commit

Permalink
Fix args
Browse files Browse the repository at this point in the history
mksquashfs: Compressor "" is not supported!
  • Loading branch information
probonopd committed Jun 25, 2023
1 parent 47679c9 commit 10ef562
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/appimagetool.c
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,8 @@ int sfs_mksquashfs(char *source, char *destination, int offset) {

args[i++] = "-comp";

if (use_xz)
args[i++] = "xz";
if (use_zstd)
args[i++] = "zstd";
else
args[i++] = sqfs_comp;

Expand Down

0 comments on commit 10ef562

Please sign in to comment.