diff options
author | Benedikt Böhm <bb@xnull.de> | 2009-10-03 09:58:13 +0200 |
---|---|---|
committer | Benedikt Böhm <bb@xnull.de> | 2009-10-03 09:58:13 +0200 |
commit | 74e732012d42ffd2a3731cb8791b406c2d9e3db1 (patch) | |
tree | f13a6441590f1ebb8af95c29ed2ac19d6fe9ebbf | |
parent | run emerge once to perform global updates while not cluttering mail output (diff) | |
download | porticron-74e732012d42ffd2a3731cb8791b406c2d9e3db1.tar.gz porticron-74e732012d42ffd2a3731cb8791b406c2d9e3db1.tar.bz2 porticron-74e732012d42ffd2a3731cb8791b406c2d9e3db1.zip |
do not use colored output with glsa-check (bug #285978)
-rwxr-xr-x | bin/porticron | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/porticron b/bin/porticron index dc2b8f6..7d5828b 100755 --- a/bin/porticron +++ b/bin/porticron @@ -83,8 +83,8 @@ ${SYNC_OVERLAYS_CMD:-/bin/true} &>/dev/null # GLSA check -log "running GLSA_AFFECTED: /usr/bin/glsa-check --test --verbose affected" -GLSA_AFFECTED=$(/usr/bin/glsa-check --test --verbose affected 2>/dev/null) +log "running GLSA_AFFECTED: /usr/bin/glsa-check --test --nocolor --verbose affected" +GLSA_AFFECTED=$(/usr/bin/glsa-check --test --nocolor --verbose affected 2>/dev/null) log "running GLSA_UPGRADES: /usr/bin/glsa-check --pretend affected" GLSA_UPGRADES=$(/usr/bin/glsa-check --pretend affected | grep '^ ') |