aboutsummaryrefslogtreecommitdiff
path: root/system/.profile
diff options
context:
space:
mode:
authorCamil Staps2018-07-01 20:12:38 +0200
committerCamil Staps2018-07-01 20:12:38 +0200
commitcffdfb0f4bd8b341674f5ffec9646e8d02ecba49 (patch)
tree59eccc0323394e8651748c0cd8f30660ca8148b6 /system/.profile
parentDon't let match-up mess up the statusline (diff)
cpmq: hide analyzing messages
Diffstat (limited to 'system/.profile')
-rw-r--r--system/.profile2
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.'