mirror of
https://github.com/beego/bee.git
synced 2024-11-15 18:50:54 +00:00
9c63635169
just notice once a day if there is a new version
39 lines
841 B
Go
39 lines
841 B
Go
package update
|
|
|
|
import (
|
|
"flag"
|
|
"os"
|
|
"os/exec"
|
|
|
|
"github.com/beego/bee/cmd/commands"
|
|
"github.com/beego/bee/config"
|
|
beeLogger "github.com/beego/bee/logger"
|
|
)
|
|
|
|
var CmdUpdate = &commands.Command{
|
|
UsageLine: "update",
|
|
Short: "Update Bee",
|
|
Long: `
|
|
Automatic run command "go get -u github.com/beego/bee" for selfupdate
|
|
`,
|
|
Run: updateBee,
|
|
}
|
|
|
|
func init() {
|
|
fs := flag.NewFlagSet("update", flag.ContinueOnError)
|
|
CmdUpdate.Flag = *fs
|
|
commands.AvailableCommands = append(commands.AvailableCommands, CmdUpdate)
|
|
}
|
|
|
|
func updateBee(cmd *commands.Command, args []string) int {
|
|
beeLogger.Log.Info("Updating")
|
|
beePath := config.GitRemotePath
|
|
cmdUp := exec.Command("go", "get", "-u", beePath)
|
|
cmdUp.Stdout = os.Stdout
|
|
cmdUp.Stderr = os.Stderr
|
|
if err := cmdUp.Run(); err != nil {
|
|
beeLogger.Log.Warnf("Run cmd err:%s",err)
|
|
}
|
|
return 0
|
|
}
|