zhou.xiaoning 2 年之前
父节点
当前提交
32faf94470
共有 1 个文件被更改,包括 6 次插入1 次删除
  1. 6 1
      api/console/update.go

+ 6 - 1
api/console/update.go

@@ -56,7 +56,12 @@ func runch(filename string) {
 		fmt.Println("filename:", filename)
 		cmd := exec.Command("sh", "./update.sh", filename)
 		fmt.Println("cmd param:", cmd.Args)
-		cmd.Run()
+		// cmd.Run()
+		out, err := cmd.CombinedOutput()
+		if err != nil {
+			fmt.Printf("update out:\n%s\n", string(out))
+		}
+		fmt.Printf("update out:\n%s\n", string(out))
 	} else {
 		_ = exec.Command("sh", "./update.sh").Run()
 	}