diff --git a/src/utils.ps1 b/src/utils.ps1 index 1faa796..3f7c3ff 100644 --- a/src/utils.ps1 +++ b/src/utils.ps1 @@ -147,12 +147,12 @@ function Get-Git-Aliases ([string] $Alias) { function Write-Host-Deprecated { param ( [Parameter(Mandatory = $true)][string] $previous, - [Parameter(Mandatory = $true)][string] $next + [Parameter(Mandatory = $true)][string] $next ) - Write-Host "[git-aliases] " -ForegroundColor Yellow -NoNewLine - Write-Host "${previous}" -ForegroundColor Red -NoNewLine - Write-Host " is a deprecated alias, use " -ForegroundColor Yellow -NoNewLine - Write-Host """${next}""" -ForegroundColor Green -NoNewLine - Write-Host " instead.`n" -ForegroundColor Yellow + Write-Host "[git-aliases] " -ForegroundColor Yellow -NoNewLine + Write-Host "${previous}" -ForegroundColor Red -NoNewLine + Write-Host " is a deprecated alias, use " -ForegroundColor Yellow -NoNewLine + Write-Host """${next}""" -ForegroundColor Green -NoNewLine + Write-Host " instead.`n" -ForegroundColor Yellow }