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 246d471 commit c7a2aa3Copy full SHA for c7a2aa3
extensions/powershell/convert-resource.ps1
@@ -8,6 +8,8 @@ begin {
8
$lines = [System.Collections.Generic.List[string]]::new()
9
10
$scriptModule = Import-Module "$PSScriptRoot/convertDscResource.psd1" -Force -PassThru -WarningAction SilentlyContinue -ErrorAction Stop
11
+
12
+ "The current module paths: $env:PSModulePath" | Write-DscTrace -Operation Trace
13
}
14
15
process {
extensions/powershell/convertDscResource.psm1
@@ -22,7 +22,6 @@ function Write-DscTrace {
22
$host.ui.WriteErrorLine($trace)
23
24
25
-"The current module paths: $env:PSModulePath" | Write-DscTrace -Operation Trace
26
function Build-DscConfigDocument {
27
[CmdletBinding()]
28
[OutputType([System.Collections.Specialized.OrderedDictionary])]
0 commit comments