From 0d8451ab6e18d6867ce9ecf843e403e147d673b7 Mon Sep 17 00:00:00 2001 From: kolaente Date: Sun, 2 Oct 2022 16:29:10 +0200 Subject: [PATCH] fix(ci): make sure release zip files have a .zip ending --- magefile.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))