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:
parent
fbda50dfb0
commit
f41b029ade
1 changed files with 1 additions and 1 deletions
|
@ -22,6 +22,6 @@
|
|||
#
|
||||
#
|
||||
|
||||
if command -v uname; then
|
||||
if command -v uname 2>&1 >/dev/null; then
|
||||
uname -m
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue