summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/common.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/common.sh b/lib/common.sh
index 92712fa..217209b 100644
--- a/lib/common.sh
+++ b/lib/common.sh
@@ -58,7 +58,7 @@ eval "$(
declare -f "${fns[@]}" | sed 's/^[a-z]/_makepkg_&/'
# re-declare ${fn} as a wrapper around _makepkg_${fn}
- printf '%s() { local mesg; mesg="$(_ "$1")"; _p _makepkg_"${FUNCNAME[0]}" "$mesg" "${@:2}"; }\n' \
+ printf '%s() { local mesg; local QUIET=$(true); mesg="$(_ "$1")"; _p _makepkg_"${FUNCNAME[0]}" "$mesg" "${@:2}"; }\n' \
"${fns[@]}"
)"