We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1af0044 commit b602df1Copy full SHA for b602df1
powershell-adapter/psDscAdapter/win_psDscAdapter.psm1
@@ -578,7 +578,7 @@ function GetClassBasedProperties {
578
return @('get', 'set', 'test')
579
}
580
581
- $module = Get-ChildItem (Split-Path $filePath -Parent) -Filter *.psm1 -File | Select-Object -First 1 -ExpandProperty FullName
+ $module = Get-ChildItem -Path (Split-Path $filePath -Parent) -Filter *.psm1 -File | Select-Object -First 1 -ExpandProperty FullName
582
583
$properties = [System.Collections.Generic.List[DscResourcePropertyInfo]]::new()
584
0 commit comments