From c5cecf99917b27f69900a2d6c6e564c33028a7b4 Mon Sep 17 00:00:00 2001 From: srdusr Date: Tue, 23 Sep 2025 21:40:49 +0200 Subject: Minor fixes --- windows/Documents/PowerShell/initialize.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'windows') diff --git a/windows/Documents/PowerShell/initialize.ps1 b/windows/Documents/PowerShell/initialize.ps1 index a616998..72f0ea4 100644 --- a/windows/Documents/PowerShell/initialize.ps1 +++ b/windows/Documents/PowerShell/initialize.ps1 @@ -5,7 +5,7 @@ .DESCRIPTION To bootstrap directly from GitHub, run these 2 cmdlets in a PowerShell prompt: > Set-ExecutionPolicy RemoteSigned -Scope CurrentUser -Force - > irm 'https://raw.githubusercontent.com/srdusr/dotfiles/main/bootstrap.ps1' | iex + > irm 'https://raw.githubusercontent.com/srdusr/dotfiles/main/windows/Documents/PowerShell/bootstrap.ps1' | iex #> [CmdletBinding()] param ( @@ -202,7 +202,7 @@ function main { return } - $script = (Join-Path $dotPath '.config\powershell\bootstrap.ps1') + $script = (Join-Path $dotPath 'Documents\PowerShell\bootstrap.ps1') Write-Host "Continue $script in child process" Start-Process -PassThru -NoNewWindow -FilePath "powershell.exe" -ArgumentList "-NoProfile -File $script setup" | Wait-Process } -- cgit v1.2.3