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
|
rm -rf dist
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
|
# extract reference
|
||||||
|
cd arduino
|
||||||
|
unzip reference.zip
|
||||||
|
rm reference.zip
|
||||||
|
cd ..
|
||||||
|
|
||||||
# add java (jre) files
|
# add java (jre) files
|
||||||
unzip -q -d arduino jre.zip
|
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/syntax
|
||||||
mkdir -p work/classes/arduino/app/tools
|
mkdir -p work/classes/arduino/app/tools
|
||||||
|
|
||||||
# echo Extracting examples...
|
|
||||||
# cd work
|
|
||||||
#unzip -q examples.zip
|
|
||||||
# rm examples.zip
|
|
||||||
# cd ..
|
|
||||||
|
|
||||||
echo Extracting reference...
|
echo Extracting reference...
|
||||||
# cd work
|
cd work
|
||||||
# unzip -q reference.zip
|
unzip reference.zip
|
||||||
# necessary for launching reference from shell/command prompt
|
# necessary for launching reference from shell/command prompt
|
||||||
# which is done internally to view reference
|
# which is done internally to view reference
|
||||||
#chmod +x reference/*.html
|
#chmod +x reference/*.html
|
||||||
# needed by 'help' menu
|
# needed by 'help' menu
|
||||||
#chmod +x reference/environment/*.html
|
#chmod +x reference/environment/*.html
|
||||||
# chmod -R +x *.html doesn't seem to work
|
# chmod -R +x *.html doesn't seem to work
|
||||||
|
rm reference.zip
|
||||||
# rm reference.zip
|
cd ..
|
||||||
# cd ..
|
|
||||||
|
|
||||||
echo Extracting enormous JRE...
|
echo Extracting enormous JRE...
|
||||||
unzip -q -d work jre.zip
|
unzip -q -d work jre.zip
|
||||||
|
|
Loading…
Reference in New Issue