Skip to content
This repository has been archived by the owner on Oct 21, 2023. It is now read-only.

Commit

Permalink
!build updated casing for module and fix CI tests
Browse files Browse the repository at this point in the history
  • Loading branch information
scrthq committed Apr 29, 2018
1 parent bea9d19 commit bf41aa1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion VaporShell/VaporShell.psm1
Expand Up @@ -43,12 +43,16 @@ if (!([AppDomain]::CurrentDomain.GetAssemblies() | Where-Object {$_.Location -li
}
}

# Add Intrinsic Function short aliases
# Add Intrinsic and Condition Function short aliases
$aliases = @()
Get-ChildItem "$PSScriptRoot\Public\Intrinsic Functions" | ForEach-Object {
$aliases += ($_.BaseName).Replace('Add-','')
New-Alias -Name ($_.BaseName).Replace('Add-','') -Value $_.BaseName -Force
}
Get-ChildItem "$PSScriptRoot\Public\Condition Functions" | ForEach-Object {
$aliases += ($_.BaseName).Replace('Add-','')
New-Alias -Name ($_.BaseName).Replace('Add-','') -Value $_.BaseName -Force
}

# Add in Pseudo Parameter variables from private text file (allows growth in case additional parameters need to be added in)
$vars = @()
Expand Down

0 comments on commit bf41aa1

Please sign in to comment.