From 090e07f04c6868036c0eb4ef6809d52ca5dccf78 Mon Sep 17 00:00:00 2001 From: Baipyrus Date: Tue, 27 Aug 2024 14:14:30 +0200 Subject: [PATCH] remove unnecessary cwd param in current dir --- install_windows.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install_windows.ps1 b/install_windows.ps1 index 2df19c3..8f5e12a 100644 --- a/install_windows.ps1 +++ b/install_windows.ps1 @@ -30,7 +30,7 @@ if (IsGitRepository -dir $currentDir -url $repoUrl) { Write-Host "Already inside the dotfiles repository. Skipping clone step and pulling..." -ForegroundColor Yellow $dotfilesRepo = $currentDir - git -C $dotfilesRepo pull + git pull } else { # Clone dotfiles repository to TMP if not already inside it