Skip to content

Commit

Permalink
Make bools logged by Write-InvocationLog always be lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
HowardWolosky committed Nov 30, 2018
1 parent 6958451 commit 35b06ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Helpers.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ function Write-InvocationLog
{
if ($param.Value -is [switch])
{
$params += "-$($param.Key):`$$($param.Value.ToBool())"
$params += "-$($param.Key):`$$($param.Value.ToBool().ToString().ToLower())"
}
else
{
Expand Down

0 comments on commit 35b06ce

Please sign in to comment.