Browse Source

Add command-check to get-bdf2u8g.sh

pull/1/head
Scott Lahteine 5 years ago
parent
commit
7fbf40c20c
  1. 4
      buildroot/share/fonts/get-bdf2u8g.sh

4
buildroot/share/fonts/get-bdf2u8g.sh

@ -12,6 +12,10 @@
HERE=$(pwd)
for CMD in curl unzip patch make; do
which $CMD >/dev/null || { echo "'$CMD' is required for this script." ; exit 1 ; }
done
[[ $HERE =~ 'buildroot/share/fonts'$ ]] || { echo "Change to buildroot/share/fonts to run $(basename $0)" ; exit 1; }
# Download u8glib

Loading…
Cancel
Save