From 10ef562c227c4c60b48ac8c6097f51a8c021db5f Mon Sep 17 00:00:00 2001 From: probonopd Date: Sun, 25 Jun 2023 12:00:20 +0200 Subject: [PATCH] Fix args mksquashfs: Compressor "" is not supported! --- src/appimagetool.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/appimagetool.c b/src/appimagetool.c index ff8da21c..73a55fc5 100644 --- a/src/appimagetool.c +++ b/src/appimagetool.c @@ -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;