From 67f297d3ac1d7ff5a747633dc5625f1f3b887eb5 Mon Sep 17 00:00:00 2001 From: "A. Wilcox" Date: Mon, 12 Jun 2017 04:56:28 +0000 Subject: abuild: Add verbose option '-v' to show everything --- abuild.in | 3 +++ 1 file changed, 3 insertions(+) diff --git a/abuild.in b/abuild.in index 26b971d..02a97ac 100644 --- a/abuild.in +++ b/abuild.in @@ -2222,6 +2222,7 @@ usage() { -R Recursively build and install missing dependencies (using sudo) -s Set source package destination directory -u Recursively build and upgrade all dependencies (using sudo) + -v Verbose: show every command as it is run (very noisy) Commands: build Compile and install package into \$pkgdir @@ -2259,6 +2260,7 @@ APKBUILD="${APKBUILD:-./APKBUILD}" unset force unset recursive while getopts "AcdD:fFhkKimnp:P:qrRs:u" opt; do +while getopts "AcdD:fFhkKimnp:P:qrRs:uv" opt; do case $opt in 'A') echo "$CARCH"; exit 0;; 'c') enable_colors @@ -2280,6 +2282,7 @@ while getopts "AcdD:fFhkKimnp:P:qrRs:u" opt; do 's') SRCDEST=$OPTARG;; 'u') upgrade="-u" recursive="-R";; + 'v') set -x;; esac done shift $(( $OPTIND - 1 )) -- cgit v1.2.3-60-g2f50