remove unnecessary cwd param in current dir

This commit is contained in:
Baipyrus 2024-08-27 14:14:30 +02:00
parent 1f821376d1
commit 090e07f04c

View File

@ -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