You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.4 KiB
Go
58 lines
1.4 KiB
Go
3 years ago
|
package main
|
||
|
|
||
|
import (
|
||
|
"flag"
|
||
|
"io/ioutil"
|
||
|
"os"
|
||
|
"path/filepath"
|
||
|
|
||
|
"golang.org/x/mod/modfile"
|
||
|
"golang.org/x/mod/module"
|
||
|
"golang.org/x/mod/zip"
|
||
|
)
|
||
|
|
||
|
func zipcmd(args []string) {
|
||
|
var (
|
||
|
version string
|
||
|
outputPath string
|
||
|
)
|
||
|
|
||
|
flags := flag.NewFlagSet("zip", flag.ExitOnError)
|
||
|
flags.StringVar(&version, "version", "", "package version")
|
||
|
flags.StringVar(&outputPath, "o", "a.zip", "output file path")
|
||
|
flags.Parse(args)
|
||
|
if version == "" {
|
||
|
bail(1, "target release version is required")
|
||
|
}
|
||
|
|
||
|
pkgdir := flags.Arg(0)
|
||
|
modfilePath := filepath.Join(pkgdir, "go.mod")
|
||
|
b, err := ioutil.ReadFile(modfilePath)
|
||
|
if err != nil {
|
||
|
bail(1, "unable to read modfile: %v", err)
|
||
|
}
|
||
|
|
||
|
log_info.Printf("checking modfile at path %q", modfilePath)
|
||
|
f, err := modfile.Parse(modfilePath, b, nil)
|
||
|
if err != nil {
|
||
|
bail(1, "unable to parse modfile: %v", err)
|
||
|
}
|
||
|
modpath := f.Module.Mod.Path
|
||
|
log_info.Print("parsed modfile")
|
||
|
log_info.Printf("module path in modfile: %s", modpath)
|
||
|
log_info.Printf("module major version in modfile: %s", f.Module.Mod.Version)
|
||
|
log_info.Printf("target release version: %s", version)
|
||
|
if err := module.Check(modpath, version); err != nil {
|
||
|
shutdown(err)
|
||
|
}
|
||
|
zf, err := os.OpenFile(outputPath, os.O_CREATE|os.O_EXCL|os.O_WRONLY, 0644)
|
||
|
if err != nil {
|
||
|
bail(1, "output file not opened: %v", err)
|
||
|
}
|
||
|
|
||
|
mv := module.Version{Path: modpath, Version: version}
|
||
|
if err := zip.CreateFromDir(zf, mv, pkgdir); err != nil {
|
||
|
bail(1, "zip not created: %v", err)
|
||
|
}
|
||
|
}
|