This commit is contained in:
yanweidong 2024-03-21 18:17:51 +08:00
parent a893f6ac86
commit 89e10173c2
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ import (
func getFilePath(srv *Service) (binPath, logsPath string) { func getFilePath(srv *Service) (binPath, logsPath string) {
binPath = filepath.Join(env.MeshEnv.Prefix, srv.ServiceKey) binPath = filepath.Join(env.MeshEnv.Prefix, srv.ServiceKey)
logsPath = filepath.Join(env.MeshEnv.Prefix, "logs", srv.ServiceKey+"@"+srv.Version+".log") logsPath = filepath.Join(env.MeshEnv.Prefix, "logs", srv.ServiceKey+"-"+srv.Version+".log")
return return
} }

View File

@ -64,7 +64,7 @@ func installExecute(srv string) {
DownloadFile(downUrl, binPath, func(length, downLen int64) { DownloadFile(downUrl, binPath, func(length, downLen int64) {
fmt.Fprintf(os.Stdout, "Total:%d KB, Current:%d KB, Percent:%.2f%%\r", length, downLen, (float32(downLen)/float32(length))*100) fmt.Fprintf(os.Stdout, "Total:%d KB, Current:%d KB, Percent:%.2f%%\r", length, downLen, (float32(downLen)/float32(length))*100)
}) })
fmt.Println("[6/6] Download Success!")
fmt.Println("[6/6] Restart Microservice:", srv) fmt.Println("[6/6] Restart Microservice:", srv)
service.Start() service.Start()
fmt.Println("Install Successful!") fmt.Println("Install Successful!")