1234567891011121314151617181920 |
- package upgrade
- import (
- "fmt"
- "git.i2edu.net/i2/go-zero/tools/goctl/rpc/execx"
- "github.com/urfave/cli"
- )
- // Upgrade gets the latest goctl by
- // go get -u git.i2edu.net/i2/go-zero/tools/goctl
- func Upgrade(_ *cli.Context) error {
- info, err := execx.Run("GO111MODULE=on GOPROXY=https://goproxy.cn/,direct go get -u git.i2edu.net/i2/go-zero/tools/goctl", "")
- if err != nil {
- return err
- }
- fmt.Print(info)
- return nil
- }
|