Skip to content

Commit 72447a5

Browse files
committed
Change &> redirects to > since the former is not supported by sh.
1 parent 56fb211 commit 72447a5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

uno-runner.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ case "$(uname -s)" in
77
*) OS="Unknown";;
88
esac
99

10-
if ! command -v numfmt &> /dev/null
10+
if ! command -v numfmt > /dev/null
1111
then
1212
echo "numfmt is needed for human-readable sizes." >&2
1313
echo "please install https://command-not-found.com/numfmt" >&2
1414
alias numfmt=true
1515
fi
1616

17-
if ! command -v avrdude &> /dev/null
17+
if ! command -v avrdude > /dev/null
1818
then
1919
echo "required avrdude could not be found!" >&2
2020
echo "please install https://command-not-found.com/avrdude" >&2

0 commit comments

Comments
 (0)