diff options
author | Camil Staps | 2018-07-01 20:12:38 +0200 |
---|---|---|
committer | Camil Staps | 2018-07-01 20:12:38 +0200 |
commit | cffdfb0f4bd8b341674f5ffec9646e8d02ecba49 (patch) | |
tree | 59eccc0323394e8651748c0cd8f30660ca8148b6 /system/.profile | |
parent | Don't let match-up mess up the statusline (diff) |
cpmq: hide analyzing messages
Diffstat (limited to 'system/.profile')
-rw-r--r-- | system/.profile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/.profile b/system/.profile index ab75815..b9668c9 100644 --- a/system/.profile +++ b/system/.profile @@ -10,7 +10,7 @@ cpmq() { res="$(cpm $@)" echo "$res" | grep -i 'Error' >/dev/null if [ $? -eq 0 ]; then - echo "$res" | grep -i '^\|Error\|Warning' + echo "$res" | grep -v Analyzing | grep -i '^\|Error\|Warning' return -1 else echo "$res" | grep --color=never -i 'Finished making.' |