Skip to content

Commit 9220637

Browse files
authored
Respect verbosity switch on Unix (#61545)
Fixes #61544
1 parent 7ced4d6 commit 9220637

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Diff for: eng/build.sh

+5
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,11 @@ while [[ $# -gt 0 ]]; do
232232
-excludeCIBinarylog|-nobl)
233233
exclude_ci_binary_log=true
234234
;;
235+
-verbosity|-v)
236+
shift
237+
[ -z "${1:-}" ] && __error "Missing value for parameter --verbosity" && __usage
238+
verbosity="${1:-}"
239+
;;
235240
-dotnet-runtime-source-feed|-dotnetruntimesourcefeed|-runtime-source-feed|-runtimesourcefeed)
236241
shift
237242
[ -z "${1:-}" ] && __error "Missing value for parameter --runtime-source-feed" && __usage

0 commit comments

Comments
 (0)