Eliminiate excess output from machine explorer

command -v emits a string to stdout, silence this since we are only
interested in the return code.
This commit is contained in:
contradict 2013-01-12 19:22:23 -08:00
parent fbda50dfb0
commit f41b029ade
1 changed files with 1 additions and 1 deletions

View File

@ -22,6 +22,6 @@
#
#
if command -v uname; then
if command -v uname 2>&1 >/dev/null; then
uname -m
fi