Skip to content

Commit

Permalink
fix zip archive
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisx8 committed Jan 30, 2022
1 parent cd7c6ee commit 0a2c580
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ func build(options buildOptions, wg *sync.WaitGroup) {
// use zip for Windows
case "windows":
zipFile := strings.TrimSuffix(out, ".exe") + ".zip"
c = exec.Command("zip", "-q", "-X", zipFile, out)
c = exec.Command("zip", "-j", "-q", "-X", zipFile, out)
// use bzip2 for everything else
default:
c = exec.Command("bzip2", out)
Expand Down

0 comments on commit 0a2c580

Please sign in to comment.