From: Luis R. Rodriguez Date: Tue, 25 May 2010 22:55:14 +0000 (-0700) Subject: compat-wireless: fix typo for used color for nagometer X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=46e90e809739e2596cfadb31bdf40839297060af;p=openwrt%2Fstaging%2Fblogic.git compat-wireless: fix typo for used color for nagometer s/REG/RED/ Signed-off-by: Luis R. Rodriguez --- diff --git a/scripts/admin-update.sh b/scripts/admin-update.sh index d93c5b0e4a36..99ab6c3418a0 100755 --- a/scripts/admin-update.sh +++ b/scripts/admin-update.sh @@ -73,21 +73,21 @@ nag_next_cherry_pick() { printf "${YELLOW}%10s${NORMAL} - Code changes brought in from linux-next\n" $2 printf "${YELLOW}%10s${NORMAL} - Code additions brought in from linux-next\n" $3 printf "${YELLOW}%10s${NORMAL} - Code deletions brought in from linux-next\n" $4 - printf "${REG}%10s${NORMAL} - %% of code being cherry picked from linux-next\n" $(perl -e 'printf("%.2f", 100 * '$2' / '$1');') + printf "${RED}%10s${NORMAL} - %% of code being cherry picked from linux-next\n" $(perl -e 'printf("%.2f", 100 * '$2' / '$1');') } nag_pending() { printf "${YELLOW}%10s${NORMAL} - Code changes posted but not yet merged\n" $2 printf "${YELLOW}%10s${NORMAL} - Code additions posted but not yet merged\n" $3 printf "${YELLOW}%10s${NORMAL} - Code deletions posted but not yet merged\n" $4 - printf "${REG}%10s${NORMAL} - %% of code not yet merged\n" $(perl -e 'printf("%.2f", 100 * '$2' / '$1');') + printf "${RED}%10s${NORMAL} - %% of code not yet merged\n" $(perl -e 'printf("%.2f", 100 * '$2' / '$1');') } nag_crap() { printf "${RED}%10s${NORMAL} - Crap changes not yet posted\n" $2 printf "${RED}%10s${NORMAL} - Crap additions not yet merged\n" $3 printf "${RED}%10s${NORMAL} - Crap deletions not yet posted\n" $4 - printf "${REG}%10s${NORMAL} - %% of crap code\n" $(perl -e 'printf("%.2f", 100 * '$2' / '$1');') + printf "${RED}%10s${NORMAL} - %% of crap code\n" $(perl -e 'printf("%.2f", 100 * '$2' / '$1');') } nagometer() {