diff --git a/.changeset/serious-lizards-invite.md b/.changeset/serious-lizards-invite.md new file mode 100644 index 0000000..4fb3b11 --- /dev/null +++ b/.changeset/serious-lizards-invite.md @@ -0,0 +1,5 @@ +--- +"app-builder-bin": patch +--- + +fix current mksquashfs version only allows xz and gzip compressions diff --git a/pkg/package-format/appimage/appImage.go b/pkg/package-format/appimage/appImage.go index 53d300b..1c5a56d 100644 --- a/pkg/package-format/appimage/appImage.go +++ b/pkg/package-format/appimage/appImage.go @@ -43,7 +43,7 @@ func ConfigureCommand(app *kingpin.Application) { template: command.Flag("template", "The template file.").String(), license: command.Flag("license", "The license file.").String(), - compression: command.Flag("compression", "The compression.").Default("zstd").Enum("xz", "lzo", "zstd"), + compression: command.Flag("compression", "The compression.").Default("gzip").Enum("xz", "gzip"), } configuration := command.Flag("configuration", "").Required().String()