We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
OpenPackage.get_Reptile
1 parent f2f35be commit 398f296Copy full SHA for 398f296
1 file changed
OP.types.ps1xml
@@ -1880,6 +1880,23 @@ if (-not $this.GetRelationships) {
1880
1881
</GetScriptBlock>
1882
</ScriptProperty>
1883
+ <ScriptProperty>
1884
+ <Name>Reptile</Name>
1885
+ <GetScriptBlock>
1886
+ <#
1887
+.SYNOPSIS
1888
+ Gets Open Package Reptiles
1889
+.DESCRIPTION
1890
+ Gets Reptile files in Open Packages
1891
+.LINK
1892
+ https://github.com/PoshWeb/Reptile
1893
+#>
1894
+foreach ($part in $this.GetParts()) {
1895
+ if ($part.Uri -notmatch '/\.reptile\.ps1$') { continue }
1896
+ $part
1897
+}
1898
+ </GetScriptBlock>
1899
+ </ScriptProperty>
1900
<ScriptProperty>
1901
<Name>Revision</Name>
1902
<GetScriptBlock>
0 commit comments