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.
26 lines
639 B
Go
26 lines
639 B
Go
package upgrade
|
|
|
|
import (
|
|
"fmt"
|
|
"runtime"
|
|
|
|
"github.com/spf13/cobra"
|
|
"github.com/zeromicro/go-zero/tools/goctl/rpc/execx"
|
|
)
|
|
|
|
// upgrade gets the latest goctl by
|
|
// go install github.com/zeromicro/go-zero/tools/goctl@latest
|
|
func upgrade(_ *cobra.Command, _ []string) error {
|
|
cmd := `GO111MODULE=on GOPROXY=https://goproxy.cn/,direct go install github.com/zeromicro/go-zero/tools/goctl@latest`
|
|
if runtime.GOOS == "windows" {
|
|
cmd = `set GOPROXY=https://goproxy.cn,direct && go install github.com/zeromicro/go-zero/tools/goctl@latest`
|
|
}
|
|
info, err := execx.Run(cmd, "")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
fmt.Print(info)
|
|
return nil
|
|
}
|