Skip to content

Commit da99d40

Browse files
StartAutomatingStartAutomating
authored andcommitted
Updating PipeScript module source (typofix) (using #105, #106)
1 parent 4230b66 commit da99d40

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)