This commit is contained in:
cdle
2021-08-31 21:10:47 +08:00
parent ce374b2346
commit 8116c87ff4
+2
View File
@@ -37,6 +37,7 @@ var functions = []Function{
}, },
{ {
Rules: []string{"^升级$"}, Rules: []string{"^升级$"},
Admin: true,
Handle: func(s im.Sender) bool { Handle: func(s im.Sender) bool {
s.Reply("傻妞开始拉取代码。") s.Reply("傻妞开始拉取代码。")
rtn, err := exec.Command("sh", "-c", "cd "+ExecPath+" && git stash && git pull").Output() rtn, err := exec.Command("sh", "-c", "cd "+ExecPath+" && git stash && git pull").Output()
@@ -71,6 +72,7 @@ var functions = []Function{
}, },
{ {
Rules: []string{"^重启$"}, Rules: []string{"^重启$"},
Admin: true,
Handle: func(s im.Sender) bool { Handle: func(s im.Sender) bool {
s.Reply("傻妞重启程序。") s.Reply("傻妞重启程序。")
Daemon() Daemon()