zhou.xiaoning 2 年之前
父節點
當前提交
2cc0d4eb09
共有 1 個文件被更改,包括 5 次插入1 次删除
  1. 5 1
      api/console/update.go

+ 5 - 1
api/console/update.go

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