Skip to content

Commit ffe929c

Browse files
committed
restore default nuke verbosity to 'normal' to output package path
1 parent 9509d91 commit ffe929c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tracer/tools/Build-AzureFunctionsNuget.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ $ProgressPreference = 'SilentlyContinue'
4545
# Set dotnet and nuke verbosity based on PowerShell verbose mode
4646
$verbose = $VerbosePreference -eq 'Continue' # Continue (verbose) or SilentlyContinue (not verbose)
4747
$dotnetVerbosity = if ($verbose) { 'detailed' } else { 'quiet' }
48-
$nukeVerbosity = if ($verbose) { 'normal' } else { 'quiet' }
48+
$nukeVerbosity = if ($verbose) { 'verbose' } else { 'normal' }
4949

5050
# Detect OS and determine build script
5151
if ($PSVersionTable.PSVersion.Major -ge 6) {

0 commit comments

Comments
 (0)