Skip to content

Commit d025084

Browse files
committed
Formatting
1 parent 16823a1 commit d025084

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

powershell-adapter/psDscAdapter/win_psDscAdapter.psm1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -711,7 +711,8 @@ function Set-ValidPSModulePath {
711711
end {
712712
if (($env:PSModulePath -split [System.IO.Path]::PathSeparator) -contains '') {
713713
"Removing empty entry from PSModulePath: '$env:PSModulePath'" | Write-DscTrace -Operation Debug
714-
$env:PSModulePath = ($env:PSModulePath -split [System.IO.Path]::PathSeparator | Where-Object { $_ -ne '' }) -join [System.IO.Path]::PathSeparator
714+
$env:PSModulePath = ($env:PSModulePath -split [System.IO.Path]::PathSeparator |
715+
Where-Object { $_ -ne '' }) -join [System.IO.Path]::PathSeparator
715716
}
716717
}
717718
}

0 commit comments

Comments
 (0)