소스 검색

Clarfiy Out Of Date Message

The existing message was a bit confusing and made me think that the AUR package 
had an update pending which Yay refused to do. I realized instead that the package is
actually *flagged* out of date on the AUR.

I then realized there is a section in the README specifically about this confusion.

So, by prefixing the word "Flagged" I think the slight confusion can be eliminated, and the 
README section possibly removed.
Nathan Aclander 5 년 전
부모
커밋
6136e15717
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      print.go

+ 1 - 1
print.go

@@ -39,7 +39,7 @@ func (warnings *aurWarnings) print() {
 	}
 
 	if len(warnings.OutOfDate) > 0 {
-		fmt.Print(bold(yellow(smallArrow)) + " Out Of Date AUR Packages:")
+		fmt.Print(bold(yellow(smallArrow)) + " Flagged Out Of Date AUR Packages:")
 		for _, name := range warnings.OutOfDate {
 			fmt.Print("  " + cyan(name))
 		}