Update boards_txt path in bin/ard-parse-boards to include environment variable ARDUINO_DIR

This corrects the behaviour of  ard-parse-boards --boards  , which would
fail if the path to boards.txt on the system didn't match the value
which was hardcoded.
This commit is contained in:
Alex Szczuczko 2012-09-25 21:34:26 -04:00
parent 184230fcf2
commit 184b482a98

View file

@ -9,7 +9,7 @@ use YAML;
my %Opt =
(
boards_txt => '/Applications/Arduino.app/Contents/Resources/Java/hardware/arduino/boards.txt',
boards_txt => "$ENV{'ARDUINO_DIR'}/hardware/arduino/boards.txt",
);
GetOptions(\%Opt,