Set BUILDROOTMIRROR from the command line.

This commit is contained in:
Jeffrey Townsend
2016-02-12 13:36:52 -08:00
parent 9ecfccc814
commit 24de625e7d

View File

@@ -9,7 +9,7 @@ ONL="$(realpath $(dirname $AUTOBUILD_SCRIPT)/../../)"
# Default build branch
BUILD_BRANCH=master
while getopts ":b:s:d:u:p:vc78" opt; do
while getopts ":b:s:d:u:p:vc78r:" opt; do
case $opt in
7)
ONLB_OPTIONS=--7
@@ -32,6 +32,9 @@ while getopts ":b:s:d:u:p:vc78" opt; do
v)
set -x
;;
r)
export BUILDROOTMIRROR=$OPTARG
;;
*)
;;
esac