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 4230b66 commit da99d40Copy full SHA for da99d40
PipeScript.psm1
@@ -1,6 +1,6 @@
1
foreach ($file in (Get-ChildItem -Path "$psScriptRoot" -Filter "*-*" -Recurse)) {
2
if ($file.Extension -ne '.ps1') { continue } # Skip if the extension is not .ps1
3
- if ($file.Name -match '\.[^\.]\.ps1$') { continue } # Skip if the file is an unrelated file
+ if ($file.Name -match '\.[^\.]\.ps1$') { continue } # Skip if the file is an unrelated file.
4
. $file.FullName
5
}
6
0 commit comments