Skip to content

Commit e3da98e

Browse files
committed
Delete unused code
1 parent c84fb6d commit e3da98e

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

internal/print/print.go

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,6 @@ func Fatal(err interface{}) {
4242
os.Exit(1)
4343
}
4444

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-
5645
// Question displays the question in the terminal and receives an answer from the user.
5746
func Question(ask string) bool {
5847
var response string

0 commit comments

Comments
 (0)