We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 344ef89 commit f6895daCopy full SHA for f6895da
Main.ps1
@@ -0,0 +1,7 @@
1
+
2
+#Import all script files - ISE files last
3
+Get-childItem (Join-Path $PSScriptRoot Functions) *.ps1 |
4
+ Sort-object -property {$_.Fullname -like "*_ISE.ps1"} | ?{
5
+ $_.Name -notlike "__*.ps1" -AND
6
+ ($_.Fullname -notlike "*_ISE.ps1" -OR (Test-Path variable:\psise))
7
+ } | %{ . $_.FullName }
0 commit comments