From 8995565e26d57e1a6e31da00597f643077e0fc24 Mon Sep 17 00:00:00 2001 From: Baipyrus Date: Mon, 25 Nov 2024 15:28:58 +0100 Subject: [PATCH] bugfix: accidentally merged output of commands --- util/windows.psm1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/util/windows.psm1 b/util/windows.psm1 index d97d27e..60f034b 100644 --- a/util/windows.psm1 +++ b/util/windows.psm1 @@ -29,7 +29,7 @@ function ReadyDotfilesRepo if (IsGitRepository -dir $cwd -url $url) { Write-Host "Already inside the dotfiles repository. Skipping clone step and pulling..." -ForegroundColor Yellow - git pull + Write-Host "$(git pull)" return $cwd } @@ -48,7 +48,7 @@ function ReadyDotfilesRepo } Write-Host "Pulling latest changes from dotfiles repository..." -ForegroundColor Cyan - git -C $destination pull + Write-Host "$(git -C $destination pull)" return $destination }