瀏覽代碼

Reword conflicting package message

The old message was probably easy to confuse with the `replaces` term.
morganamilo 7 年之前
父節點
當前提交
b50fae1dd4
共有 1 個文件被更改,包括 1 次插入1 次删除
  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)
 			}