Public/SourceControl/Install-EdenSourceControlTools.ps1

function Install-EdenSourceControlTools {
    <#
        .SYNOPSIS
        Installing source control tools.

        .DESCRIPTION
        Installing source control tools. by calling the local './Eden/SourceControl/Install-SourceControlTools.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 "SourceControl/Install-SourceControlTools" `
        -SettingsName $SettingsName `
        -CommandGroup "Source Control" `
        -Message "Installing source control tools." `
        -AdditionalArguments $AdditionalArguments
}
New-Alias `
    -Name e-scti `
    -Value Install-EdenSourceControlTools `
    -Force