Virtualenv.psm1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
# +++++++++++++++++++++++++++++++++++++++ # Get powershell files $Public = @( Get-ChildItem -Path "$PSScriptRoot\Public\*.ps1") $Private = @( Get-ChildItem -Path "$PSScriptRoot\Private\*.ps1") # +++++++++++++++++++++++++++++++++++++++ # Import file @($Public + $Private) | ForEach-Object { Try { Write-Verbose "Load $($_.FullName)" . $_.FullName } Catch { write-Error -Message "Failed to import function $($_.FullName): $($_.Exception.Message)" } } |