Просмотр исходного кода

Respect verbosity switch on Unix (#61545)

Fixes https://github.com/dotnet/aspnetcore/issues/61544
Viktor Hofer 10 месяцев назад
Родитель
Сommit
9220637e05
1 измененных файлов с 5 добавлено и 0 удалено
  1. 5 0
      eng/build.sh

+ 5 - 0
eng/build.sh

@@ -232,6 +232,11 @@ while [[ $# -gt 0 ]]; do
         -excludeCIBinarylog|-nobl)
         -excludeCIBinarylog|-nobl)
             exclude_ci_binary_log=true
             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)
         -dotnet-runtime-source-feed|-dotnetruntimesourcefeed|-runtime-source-feed|-runtimesourcefeed)
             shift
             shift
             [ -z "${1:-}" ] && __error "Missing value for parameter --runtime-source-feed" && __usage
             [ -z "${1:-}" ] && __error "Missing value for parameter --runtime-source-feed" && __usage