commit: 9e0d9b555da6866d366bfcb8cb40f3e4c4e79a2b Author: Kerin Millar <kfm <AT> plushkava <DOT> net> AuthorDate: Sat Feb 18 06:46:12 2023 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sun Feb 19 16:14:06 2023 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-functions.git/commit/?id=9e0d9b55
Drop -nc as a supported argument for disabling color https://bugs.gentoo.org/599792#c1 went unnoted at the time, but the commenter was quite right. It is just silly. Get rid of it. Signed-off-by: Kerin Millar <kfm <AT> plushkava.net> Signed-off-by: Sam James <sam <AT> gentoo.org> functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.sh b/functions.sh index 3b56b1d..fbc0812 100644 --- a/functions.sh +++ b/functions.sh @@ -488,7 +488,7 @@ genfun_indent= for _ in "$@"; do case $_ in # Check whether the user specifed an argument to disable color. - --nocolor|--nocolour|-nc|-C) + --nocolor|--nocolour|-C) RC_NOCOLOR="yes" break esac
