Merge pull request #704 from thriqon/shellcheck-party-SC2069
Fix SC2069 (wrong stdout/stderr redirect order)
This commit is contained in:
commit
3ead8b266a
1 changed files with 1 additions and 1 deletions
|
@ -22,6 +22,6 @@
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
|
|
||||||
if command -v uname 2>&1 >/dev/null; then
|
if command -v uname >/dev/null 2>&1 ; then
|
||||||
uname -m
|
uname -m
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue