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 a1dcc74 commit b379293Copy full SHA for b379293
Types/PipeScript/get_PipeScriptType.ps1
@@ -4,6 +4,9 @@ if ($this.Source -match '\.psx\.ps1{0,1}$') {
4
elseif ($this.Source -match "\.ps1{0,1}\.(?<ext>[^.]+$)") {
5
"SourceGenerator"
6
}
7
+elseif (($this.Source -match '\.[^\.\\/]+\.ps1$') -or ($this.Source -match 'build\.ps1$')) {
8
+ "BuildScript"
9
+}
10
elseif ($this.Source) {
11
"PipeScriptFile"
12
0 commit comments