Add verbose option.

This commit is contained in:
Jeffrey Townsend
2018-04-18 17:03:13 -07:00
parent c8a697ffb2
commit c50b4bf705

View File

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