scripts: use "/bin/cat" in NM-log

Ubuntu 16.04 doesn't have merged /usr directories and cat is in
/bin/cat.
This commit is contained in:
Thomas Haller 2020-08-17 10:58:10 +02:00
parent 80c93b0e5e
commit 67cc4544f7
No known key found for this signature in database
GPG key ID: 29C2366E4DFC5728

View file

@ -44,10 +44,10 @@ NM-colorize() {
if [[ "$NM_LOG_GREP" != "" ]]; then
GREP_COLOR='01;36' grep -a --color=always "^\\|$NM_LOG_GREP"
else
/usr/bin/cat -
/bin/cat -
fi
else
/usr/bin/cat -
/bin/cat -
fi
}