Browse Source

Respect verbosity switch on Unix (#61545)

Fixes https://github.com/dotnet/aspnetcore/issues/61544
Viktor Hofer 10 months ago
parent
commit
9220637e05
1 changed files with 5 additions and 0 deletions
  1. 5 0
      eng/build.sh

+ 5 - 0
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