Skip to content

Commit 8473ad1

Browse files
author
James Brundage
committed
Merge branch 'PipeScriptFunAndFixes' of https://github.com/StartAutomating/PipeScript into PipeScriptFunAndFixes
2 parents fe28761 + da99d40 commit 8473ad1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PipeScript.psm1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
foreach ($file in (Get-ChildItem -Path "$psScriptRoot" -Filter "*-*" -Recurse)) {
22
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
3+
if ($file.Name -match '\.[^\.]\.ps1$') { continue } # Skip if the file is an unrelated file.
44
. $file.FullName
55
}
66

0 commit comments

Comments
 (0)