Merge pull request #704 from thriqon/shellcheck-party-SC2069

Fix SC2069 (wrong stdout/stderr redirect order)
This commit is contained in:
Darko Poljak 2018-10-04 22:33:11 +02:00 committed by GitHub
commit 3ead8b266a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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