bugfix: create powershell profile directory if not exists

This commit is contained in:
Baipyrus 2024-11-25 15:10:09 +01:00
parent 8a4fed4295
commit 94028eff12

View File

@ -46,6 +46,12 @@ if ($null -eq $ubuntu)
# Setting up PowerShell Profile # Setting up PowerShell Profile
Write-Host "Setting up PowerShell profile..." -ForegroundColor Cyan 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
}
# Copy existing startup script to destination
CopyFileWithPrompt "$dotfilesRepo\PowerShell\Microsoft.PowerShell_profile.ps1" $psProfile CopyFileWithPrompt "$dotfilesRepo\PowerShell\Microsoft.PowerShell_profile.ps1" $psProfile
# Setting up self-made ProxySwitcher # Setting up self-made ProxySwitcher