Skip to content

Commit

Permalink
fix: use correct compression args as mksquashfs (#123)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmaietta authored Jul 18, 2024
1 parent 94485c6 commit 20feb29
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/serious-lizards-invite.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"app-builder-bin": patch
---

fix current mksquashfs version only allows xz and gzip compressions
2 changes: 1 addition & 1 deletion pkg/package-format/appimage/appImage.go
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 20feb29

Please sign in to comment.