Skip to content

Commit

Permalink
Fix verbose message
Browse files Browse the repository at this point in the history
  • Loading branch information
johlju committed May 16, 2019
1 parent 8742e9a commit ac9ee53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DSCResources/MSFT_xADComputer/MSFT_xADComputer.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -900,7 +900,7 @@ function Set-TargetResource
if ($property.Expected)
{
Write-Verbose -Message (
$script:localizedData.UpdatingComputerAccountProperty -f $computerAccountPropertyName, ($property.Expected -join ',')
$script:localizedData.UpdatingComputerAccountProperty -f $computerAccountPropertyName, ($property.Expected -join ''',''')
)

# Replace the current value.
Expand All @@ -909,7 +909,7 @@ function Set-TargetResource
else
{
Write-Verbose -Message (
$script:localizedData.RemovingComputerAccountProperty -f $property.ParameterName, ($property.Actual -join ',')
$script:localizedData.RemovingComputerAccountProperty -f $property.ParameterName, ($property.Actual -join ''',''')
)

# Remove the current value since the desired value is empty or nothing.
Expand Down

0 comments on commit ac9ee53

Please sign in to comment.