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 ce01a1b commit 4631fc7Copy full SHA for 4631fc7
powershell-adapter/psDscAdapter/psDscAdapter.psm1
@@ -70,7 +70,7 @@ function Invoke-DscCacheRefresh {
70
}
71
72
# we can't run this check in PSDesiredStateConfiguration 1.1 because the property doesn't exist
73
- if ( $PSVersionTable.PSVersion.Major -le 5 ) {
+ if ( $PSVersionTable.PSVersion.Major -gt 5 ) {
74
# only support known dscResourceType
75
if ([dscResourceType].GetEnumNames() -notcontains $dscResource.ImplementationDetail) {
76
$trace = @{'Debug' = 'WARNING: implementation detail not found: ' + $dscResource.ImplementationDetail } | ConvertTo-Json -Compress
0 commit comments