Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(snap): add Snap compression option #6201

Merged
merged 8 commits into from
Jan 12, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add lzo compression to linux options
Signed-off-by: Omer Akram <om26er@gmail.com>
  • Loading branch information
om26er committed Jan 12, 2022
commit 531acddfe4f380270c09dccff307c849c7dd42e6
3 changes: 2 additions & 1 deletion packages/app-builder-lib/scheme.json
Original file line number Diff line number Diff line change
Expand Up @@ -2146,7 +2146,8 @@
"enum": [
"bzip2",
"gz",
"xz"
"xz",
"lzo"
],
"type": "string"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/app-builder-lib/src/options/linuxOptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export interface LinuxTargetSpecificOptions extends CommonLinuxOptions, TargetSp
* The compression type.
* @default xz
*/
readonly compression?: "gz" | "bzip2" | "xz" | null
readonly compression?: "gz" | "bzip2" | "xz" | "lzo" | null

readonly icon?: string

Expand Down