mirror of https://github.com/noisymime/Arduino.git
Extracting reference in windows build files: make.sh and dist.sh
This commit is contained in:
parent
893e8d1e32
commit
a5855d6721
|
@ -32,6 +32,12 @@ rm dist/examples.zip
|
|||
rm -rf dist
|
||||
cd ..
|
||||
|
||||
# extract reference
|
||||
cd arduino
|
||||
unzip reference.zip
|
||||
rm reference.zip
|
||||
cd ..
|
||||
|
||||
# add java (jre) files
|
||||
unzip -q -d arduino jre.zip
|
||||
|
||||
|
|
Binary file not shown.
|
@ -20,24 +20,17 @@ else
|
|||
mkdir -p work/classes/arduino/app/syntax
|
||||
mkdir -p work/classes/arduino/app/tools
|
||||
|
||||
# echo Extracting examples...
|
||||
# cd work
|
||||
#unzip -q examples.zip
|
||||
# rm examples.zip
|
||||
# cd ..
|
||||
|
||||
echo Extracting reference...
|
||||
# cd work
|
||||
# unzip -q reference.zip
|
||||
cd work
|
||||
unzip reference.zip
|
||||
# necessary for launching reference from shell/command prompt
|
||||
# which is done internally to view reference
|
||||
#chmod +x reference/*.html
|
||||
# needed by 'help' menu
|
||||
#chmod +x reference/environment/*.html
|
||||
# chmod -R +x *.html doesn't seem to work
|
||||
|
||||
# rm reference.zip
|
||||
# cd ..
|
||||
rm reference.zip
|
||||
cd ..
|
||||
|
||||
echo Extracting enormous JRE...
|
||||
unzip -q -d work jre.zip
|
||||
|
|
Loading…
Reference in New Issue