Skip to content

Commit

Permalink
returning created type
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianSchuetze committed Feb 26, 2020
1 parent 2960fd4 commit 22bd1de
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Source/Public/Test-VSTeamYamlPipeline.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
function Test-VSTeamYamlPipeline {
param(
[Parameter(Mandatory = $true, ValueFromPipelineByPropertyName = $true)]
[Parameter(Mandatory = $true, ValueFromPipelineByPropertyName = $true, Position = 1)]
[Int32] $PipelineId,
[Parameter(Mandatory = $false)]
[string] $FilePath
Expand Down Expand Up @@ -37,6 +37,8 @@ function Test-VSTeamYamlPipeline {
}
}

_applyTypesToYamlPipelineResultType -item $resp

return $resp
}
}

0 comments on commit 22bd1de

Please sign in to comment.