Skip to content
Snippets Groups Projects
Commit 1a437b98 authored by Jonathan Wilkes's avatar Jonathan Wilkes
Browse files

parse options before downloading nwjs binary (since some of the nwjs binary...

parse options before downloading nwjs binary (since some of the nwjs binary prep depends on whether we're building a dmg)
parent 97b68d9e
No related branches found
No related tags found
No related merge requests found
......@@ -40,6 +40,56 @@ pkg=1
inno=0
dmg=0
while getopts ":abBcdefFnRruwXzZ" Option
do case $Option in
a) addon=1;;
b) deb=1
inst_dir=${inst_dir:-/usr};;
B) deb=2
inst_dir=${inst_dir:-/usr};;
c) core=1;;
e) addon=1
core=1
full=1;;
f) full=1;;
F) full=2;;
n) pkg=0;;
R) deb=2
inst_dir=/usr
rpi=1;;
r) deb=1
inst_dir=/usr
rpi=1;;
w) sys_cwiid=1
;;
X) dmg=1
inst_dir=/usr;;
z) inno=1
inst_dir=/usr;;
Z) inno=2
inst_dir=/usr;;
*) echo "Error: unknown option";;
esac
done
inst_dir=${inst_dir:-/usr/local}
export TAR_EM_UP_PREFIX=$inst_dir
# Get the OS we're running under, normalized to names that can be used
# to fetch the nwjs binaries below
......@@ -121,57 +171,6 @@ if [[ $os == "win" ]]; then
fi
fi
while getopts ":abBcdefFnRruwXzZ" Option
do case $Option in
a) addon=1;;
b) deb=1
inst_dir=${inst_dir:-/usr};;
B) deb=2
inst_dir=${inst_dir:-/usr};;
c) core=1;;
e) addon=1
core=1
full=1;;
f) full=1;;
F) full=2;;
n) pkg=0;;
R) deb=2
inst_dir=/usr
rpi=1;;
r) deb=1
inst_dir=/usr
rpi=1;;
w) sys_cwiid=1
;;
X) dmg=1
inst_dir=/usr;;
z) inno=1
inst_dir=/usr;;
Z) inno=2
inst_dir=/usr;;
*) echo "Error: unknown option";;
esac
done
inst_dir=${inst_dir:-/usr/local}
export TAR_EM_UP_PREFIX=$inst_dir
cd ../
if [ $core -eq 1 ]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment