Skip to content

Commit d96cf01

Browse files
goldstar611azubieta
authored andcommitted
Fix #347: No data compression
mksquashfs has an option `-no-compression` [1] but it seems to have been released about 10 months ago [2] and not widely available, especially on older OS installations. Switch to a more widely available `-noDatacompression` option instead. [3] [4] 1. https://www.mankier.com/1/mksquashfs 2. https://github.com/plougher/squashfs-tools/blame/1c791c5bdd2307458088e1f0821d9cefd14e0c96/README-4.6.1#L83 3. https://manpages.debian.org/jessie/squashfs-tools/mksquashfs.1.en.html 4. https://manpages.ubuntu.com/manpages/focal/man1/mksquashfs.1.html
1 parent f75b233 commit d96cf01

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

appimagebuilder/modules/prime/appimage_primer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def _make_squashfs(self, appdir: pathlib.Path):
9191
if comp != "None":
9292
command += [ "-comp", comp]
9393
else:
94-
command += ["-no-compression"]
94+
command += ["-noDataCompression"]
9595

9696
self.logger.info("Creating squashfs from AppDir")
9797
self.logger.debug(" ".join(command))

0 commit comments

Comments
 (0)