ignore command output for commit 94028ef

This commit is contained in:
Baipyrus 2024-11-25 15:31:27 +01:00
parent 8995565e26
commit b5a56cd60e

View File

@ -49,7 +49,7 @@ Write-Host "Setting up PowerShell profile..." -ForegroundColor Cyan
# Create local PowerShell profile directory # Create local PowerShell profile directory
$psDir = Split-Path -Path $psProfile $psDir = Split-Path -Path $psProfile
if (-not (Test-Path $psDir)) 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 # Copy existing startup script to destination
CopyFileWithPrompt "$dotfilesRepo\PowerShell\Microsoft.PowerShell_profile.ps1" $psProfile CopyFileWithPrompt "$dotfilesRepo\PowerShell\Microsoft.PowerShell_profile.ps1" $psProfile