Skip to content

Commit 35b06ce

Browse files
committed
Make bools logged by Write-InvocationLog always be lowercase
1 parent 6958451 commit 35b06ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Helpers.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@ function Write-InvocationLog
463463
{
464464
if ($param.Value -is [switch])
465465
{
466-
$params += "-$($param.Key):`$$($param.Value.ToBool())"
466+
$params += "-$($param.Key):`$$($param.Value.ToBool().ToString().ToLower())"
467467
}
468468
else
469469
{

0 commit comments

Comments
 (0)