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 53e5e95 commit f2f35beCopy full SHA for f2f35be
1 file changed
Types/OpenPackage/get_Reptile.ps1
@@ -0,0 +1,12 @@
1
+<#
2
+.SYNOPSIS
3
+ Gets Open Package Reptiles
4
+.DESCRIPTION
5
+ Gets Reptile files in Open Packages
6
+.LINK
7
+ https://github.com/PoshWeb/Reptile
8
+#>
9
+foreach ($part in $this.GetParts()) {
10
+ if ($part.Uri -notmatch '/\.reptile\.ps1$') { continue }
11
+ $part
12
+}
0 commit comments