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 7d5ea6f commit 360932bCopy full SHA for 360932b
schema/schema.psd1
@@ -12,7 +12,7 @@
12
RootModule = 'schema.psm1'
13
14
# Version number of this module.
15
-ModuleVersion = '1.1.0'
+ModuleVersion = '1.1.1'
16
17
# Supported PSEditions
18
# CompatiblePSEditions = @()
schema/schema.psm1
@@ -23,7 +23,7 @@ function Get-Document {
23
switch ($Schema.Scheme) {
24
'file' {
25
Write-Verbose "Incoming Filepath";
26
- Get-Content -Path $Path | ConvertFrom-Json;
+ Return Get-Content -Path $Path | ConvertFrom-Json;
27
}
28
'https' {
29
Write-Verbose "Incoming HTTPs path";
0 commit comments