git.lirion.de

Of git, get, and gud

aboutsummaryrefslogtreecommitdiffstats
path: root/AzureHelpers/AzureHelpers.psm1
blob: d5eac12013cc1cdf5511eacc88b7bb0ff7dce37f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!powershell
# vim:syntax=ps1:ts=4
# Source functions from elswehere.
$Private = (Get-ChildItem -Path (Join-Path $PSScriptRoot '.\Private') -Filter *.ps1)
$Public = (Get-ChildItem -Path (Join-Path $PSScriptRoot '.\Public') -Filter *.ps1 -Recurse)

foreach ($Script in $Public) {
	. $Script.FullName
	Export-ModuleMember $Script.BaseName -Alias *
}

foreach ($Script in $Private) {
	. $Script.FullName
}