File tree Expand file tree Collapse file tree
src/PSDesiredStateConfiguration Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# v2 Changelog
22
3+ ## [ v2.0.7]
4+
5+ ### Main changes
6+
7+ - Fixed Invoke-DscResource error when a class-based resource module path contains a space.
8+
9+ [ v2.0.7 ] : https://www.powershellgallery.com/packages/PSDesiredStateConfiguration/2.0.7
10+
311## [ v2.0.6]
412
513### Main changes
Original file line number Diff line number Diff line change 99RootModule = ' PSDesiredStateConfiguration.psm1'
1010
1111# Version number of this module.
12- moduleVersion = ' 2.0.6 '
12+ moduleVersion = ' 2.0.7 '
1313
1414# Supported PSEditions
1515CompatiblePSEditions = @ (' Core' )
Original file line number Diff line number Diff line change @@ -4749,7 +4749,7 @@ function Invoke-DscClassBasedResource
47494749 $iss = [System.Management.Automation.Runspaces.InitialSessionState ]::CreateDefault2()
47504750 $powershell = [PowerShell ]::Create($iss )
47514751 $script = @"
4752- using module $path
4752+ using module " $path "
47534753
47544754Write-Host -Message ([$type ]::new | out-string)
47554755return [$type ]::new()
You can’t perform that action at this time.
0 commit comments