From 40ea49a45e715eea4d9f38beb8d5832379b664c4 Mon Sep 17 00:00:00 2001 From: Viktor Hofer Date: Fri, 18 Apr 2025 13:56:28 +0200 Subject: [PATCH] Respect verbosity switch on Unix Fixes https://github.com/dotnet/aspnetcore/issues/61544 --- eng/build.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/eng/build.sh b/eng/build.sh index eb45d4052eb6..3da456256ce5 100755 --- a/eng/build.sh +++ b/eng/build.sh @@ -232,6 +232,11 @@ while [[ $# -gt 0 ]]; do -excludeCIBinarylog|-nobl) exclude_ci_binary_log=true ;; + -verbosity|-v) + shift + [ -z "${1:-}" ] && __error "Missing value for parameter --verbosity" && __usage + verbosity="${1:-}" + ;; -dotnet-runtime-source-feed|-dotnetruntimesourcefeed|-runtime-source-feed|-runtimesourcefeed) shift [ -z "${1:-}" ] && __error "Missing value for parameter --runtime-source-feed" && __usage