From cfc1d45ae467f3ded096c944f2b716403edccc52 Mon Sep 17 00:00:00 2001 From: Baipyrus Date: Tue, 27 Aug 2024 15:01:57 +0200 Subject: [PATCH] unify spacing in output --- install_windows.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install_windows.ps1 b/install_windows.ps1 index 6d1cc74..89ee6bd 100644 --- a/install_windows.ps1 +++ b/install_windows.ps1 @@ -76,7 +76,7 @@ function ProcessUrlFiles # Ensure the destination directory exists if (-not (Test-Path $destinationDir)) { - Write-Host "Creating destination directory $destinationDir ..." -ForegroundColor Cyan + Write-Host "Creating destination directory $destinationDir..." -ForegroundColor Cyan New-Item -ItemType Directory -Path $destinationDir 2>$null } @@ -112,7 +112,7 @@ function ProcessUrlFiles # If the URL is a git repository, pull it if (IsGitRepository -dir $destinationPath -url $url) { - Write-Host "Pulling inside existing repository $fileName ..." -ForegroundColor Cyan + Write-Host "Pulling inside existing repository $fileName..." -ForegroundColor Cyan git -C $destinationPath pull continue }