Pārlūkot izejas kodu

Reword conflicting package message

The old message was probably easy to confuse with the `replaces` term.
morganamilo 7 gadi atpakaļ
vecāks
revīzija
b50fae1dd4
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      install.go

+ 1 - 1
install.go

@@ -295,7 +295,7 @@ func checkForConflicts(dc *depCatagories) error {
 		fmt.Println(
 			redFg("Package conflicts found:"))
 		for name, pkgs := range toRemove {
-			str := yellowFg("\t" + name) + " Replaces"
+			str := "\tInstalling " + yellowFg(name) + " will remove"
 			for pkg := range pkgs {
 				str += " " + yellowFg(pkg)
 			}