zhou.xiaoning 2 năm trước cách đây
mục cha
commit
2cc0d4eb09
1 tập tin đã thay đổi với 5 bổ sung1 xóa
  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))
+		}
 	}
 }