diff --git a/magefile.go b/magefile.go index a2a14487e1..4ba5e14798 100644 --- a/magefile.go +++ b/magefile.go @@ -664,7 +664,7 @@ func (Release) Zip() error { fmt.Printf("Zipping %s...\n", info.Name()) - c := exec.Command("zip", "-r", RootPath+"/"+DIST+"/zip/"+info.Name(), ".", "-i", "*") + c := exec.Command("zip", "-r", RootPath+"/"+DIST+"/zip/"+info.Name()+".zip", ".", "-i", "*") c.Dir = path out, err := c.Output() fmt.Print(string(out))