zhou.xiaoning 2 anos atrás
pai
commit
2cc0d4eb09
1 arquivos alterados com 5 adições e 1 exclusões
  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))
+		}
 	}
 }