Skip to content

Commit

Permalink
[cmd/fyne] gzip the linux package archive
Browse files Browse the repository at this point in the history
This PR gzip the linux package archive according to the specified extension
  • Loading branch information
lucor authored Jan 20, 2020
1 parent 690037b commit 456e0b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/fyne/package.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ func (p *packager) packageLinux() error {
copyFile(p.icon, iconPath)

if !p.install {
tarCmd := exec.Command("tar", "cf", p.name+".tar.gz", "usr")
tarCmd := exec.Command("tar", "zcf", p.name+".tar.gz", "usr")
tarCmd.Run()
}

Expand Down

0 comments on commit 456e0b9

Please sign in to comment.