Fix process blocking problem during check (#1911)
This commit is contained in:
6
tools/goctl/env/check.go
vendored
6
tools/goctl/env/check.go
vendored
@@ -83,7 +83,7 @@ command 'goctl env check --install' to install it, for details, please execute c
|
|||||||
install()
|
install()
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
log.Info("[goctl-env]: do you want to install %q [y: YES, n: No]", e.name)
|
console.Info("[goctl-env]: do you want to install %q [y: YES, n: No]", e.name)
|
||||||
for {
|
for {
|
||||||
var in string
|
var in string
|
||||||
fmt.Scanln(&in)
|
fmt.Scanln(&in)
|
||||||
@@ -94,10 +94,10 @@ command 'goctl env check --install' to install it, for details, please execute c
|
|||||||
brk = true
|
brk = true
|
||||||
case strings.EqualFold(in, "n"):
|
case strings.EqualFold(in, "n"):
|
||||||
pending = false
|
pending = false
|
||||||
log.Info("[goctl-env]: %q installation is ignored", e.name)
|
console.Info("[goctl-env]: %q installation is ignored", e.name)
|
||||||
brk = true
|
brk = true
|
||||||
default:
|
default:
|
||||||
log.Error("[goctl-env]: invalid input, input 'y' for yes, 'n' for no")
|
console.Error("[goctl-env]: invalid input, input 'y' for yes, 'n' for no")
|
||||||
}
|
}
|
||||||
if brk {
|
if brk {
|
||||||
break
|
break
|
||||||
|
|||||||
@@ -175,7 +175,7 @@ func println(msg interface{}) {
|
|||||||
fmt.Println(msg)
|
fmt.Println(msg)
|
||||||
}
|
}
|
||||||
|
|
||||||
var defaultConsole = new(colorConsole)
|
var defaultConsole = &colorConsole{enable: true}
|
||||||
|
|
||||||
func Success(format string, a ...interface{}) {
|
func Success(format string, a ...interface{}) {
|
||||||
defaultConsole.Success(format, a...)
|
defaultConsole.Success(format, a...)
|
||||||
|
|||||||
Reference in New Issue
Block a user