Public/Pipeline/Install-EdenServicePipelineTools.ps1
function Install-EdenServicePipelineTools { <# .SYNOPSIS Installing pipeline tools. .DESCRIPTION Installing pipeline tools. by calling the local './Eden/Pipeline/Install-ServicePipelineTools.ps1' script. #> [CmdletBinding()] param( # The name of the local or global settins file to pass to the Eden script. [Alias("sn")] [String] $SettingsName, # The additional arguments to pass to the Eden script. [Alias("aa")] [HashTable] $AdditionalArguments ) Invoke-EdenCommandStandardFlow ` -LocalCommandPath "Pipeline/Install-ServicePipelineTools" ` -SettingsName $SettingsName ` -CommandGroup "Pipeline" ` -Message "Installing pipeline tools." ` -AdditionalArguments $AdditionalArguments } New-Alias ` -Name e-plti ` -Value Install-EdenServicePipelineTools ` -Force |