Skip to content

Commit

Permalink
Change &> redirects to > since the former is not supported by sh.
Browse files Browse the repository at this point in the history
  • Loading branch information
Cryptjar committed Jan 4, 2021
1 parent 56fb211 commit 72447a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions uno-runner.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ case "$(uname -s)" in
*) OS="Unknown";;
esac

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

if ! command -v avrdude &> /dev/null
if ! command -v avrdude > /dev/null
then
echo "required avrdude could not be found!" >&2
echo "please install https://command-not-found.com/avrdude" >&2
Expand Down

0 comments on commit 72447a5

Please sign in to comment.