From a6c4a2dcdfe3609f931d39f8f79455ff76456f44 Mon Sep 17 00:00:00 2001 From: Saran Tanpituckpong Date: Tue, 31 Dec 2024 18:20:20 +0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Format=20code?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils.ps1 | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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 }