zhou.xiaoning 2 år sedan
förälder
incheckning
2cc0d4eb09
1 ändrade filer med 5 tillägg och 1 borttagningar
  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))
+		}
 	}
 }