From b5a56cd60e6435d2962419b50a201bcf3e969306 Mon Sep 17 00:00:00 2001 From: Baipyrus Date: Mon, 25 Nov 2024 15:31:27 +0100 Subject: [PATCH] ignore command output for commit 94028ef --- install_windows.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install_windows.ps1 b/install_windows.ps1 index 059eee2..400bbbc 100644 --- a/install_windows.ps1 +++ b/install_windows.ps1 @@ -49,7 +49,7 @@ Write-Host "Setting up PowerShell profile..." -ForegroundColor Cyan # Create local PowerShell profile directory $psDir = Split-Path -Path $psProfile if (-not (Test-Path $psDir)) -{ New-Item -ItemType Directory -Path $psDir +{ New-Item -ItemType Directory -Path $psDir | Out-Null } # Copy existing startup script to destination CopyFileWithPrompt "$dotfilesRepo\PowerShell\Microsoft.PowerShell_profile.ps1" $psProfile