zhou.xiaoning 2 yıl önce
ebeveyn
işleme
34921187a3
1 değiştirilmiş dosya ile 2 ekleme ve 1 silme
  1. 2 1
      api/console/update.go

+ 2 - 1
api/console/update.go

@@ -56,7 +56,7 @@ 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))
@@ -64,6 +64,7 @@ func runch(filename string) {
 		fmt.Printf("update out:\n%s\n", string(out))
 	} else {
 		cmd := exec.Command("sh", "./update.sh")
+		cmd.Run()
 		out, err := cmd.CombinedOutput()
 		if err != nil {
 			fmt.Printf("update out:\n%s\n", string(out))