From c50b4bf705d27b0b35821ddc6427b62822114c44 Mon Sep 17 00:00:00 2001 From: Jeffrey Townsend Date: Wed, 18 Apr 2018 17:03:13 -0700 Subject: [PATCH] Add verbose option. --- tools/autobuild/build.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tools/autobuild/build.sh b/tools/autobuild/build.sh index a3b6aff0..f33fab3c 100755 --- a/tools/autobuild/build.sh +++ b/tools/autobuild/build.sh @@ -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 ;;