Skip to content

Commit

Permalink
fix: use upx -9
Browse files Browse the repository at this point in the history
  • Loading branch information
BaiMeow committed Dec 1, 2023
1 parent 59c399f commit da2dac7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ upx:

# Compress argument.
# Valid options are from '1' (faster) to '9' (better), and 'best'.
compress: best
compress: '9'

# Whether to try LZMA (slower).
lzma: true
Expand Down
2 changes: 1 addition & 1 deletion cmd/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ var versionCmd = &cobra.Command{
Short: "Print the version number of wg-quick-op",
Long: `All software has versions. This is wg-quick-op's`,
Run: func(cmd *cobra.Command, args []string) {
fmt.Printf("Wireguard Quick for Openwrt %s\n", version)
fmt.Printf("wg-quick-op v%s\n", version)
},
}

Expand Down

0 comments on commit da2dac7

Please sign in to comment.