Skip to content

Commit 6550de3

Browse files
committed
utils: silence random True in the output
This cleans up the `Get-Dependencies` output to avoid the extraneous `True` that is printed.
1 parent e0c1609 commit 6550de3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -813,7 +813,7 @@ function Invoke-BuildStep {
813813
$NextArg = $RemainingArgs[$RemainingArgs.IndexOf($Arg) + 1]
814814
if ($NextArg -is [string] -and !$NextArg.StartsWith('-')) {
815815
$SplatArgs[$ParamName] = $NextArg
816-
$Enumerator.MoveNext() # Skip NextArg
816+
$Enumerator.MoveNext() | Out-Null # Skip NextArg
817817
continue
818818
}
819819
}

0 commit comments

Comments
 (0)