We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c84fb6d commit e3da98eCopy full SHA for e3da98e
internal/print/print.go
@@ -42,17 +42,6 @@ func Fatal(err interface{}) {
42
os.Exit(1)
43
}
44
45
-// InstallResult print the result of "go install"
46
-func InstallResult(result map[string]string) {
47
- for k, v := range result {
48
- if v == "Failure" {
49
- Err(fmt.Errorf("update failure: %s ", k))
50
- } else {
51
- Info("update success: " + k)
52
- }
53
54
-}
55
-
56
// Question displays the question in the terminal and receives an answer from the user.
57
func Question(ask string) bool {
58
var response string
0 commit comments