aboutsummaryrefslogtreecommitdiff
path: root/windows
diff options
context:
space:
mode:
authorsrdusr <trevorgray@srdusr.com>2025-09-23 21:40:49 +0200
committersrdusr <trevorgray@srdusr.com>2025-09-23 21:40:49 +0200
commitc5cecf99917b27f69900a2d6c6e564c33028a7b4 (patch)
treea524a0b9eaddb37a5336aca923fef65691bb72d0 /windows
parentc1868f295b964482976db0205fd7ca8d492c5864 (diff)
downloaddotfiles-c5cecf99917b27f69900a2d6c6e564c33028a7b4.tar.gz
dotfiles-c5cecf99917b27f69900a2d6c6e564c33028a7b4.zip
Minor fixes
Diffstat (limited to 'windows')
-rw-r--r--windows/Documents/PowerShell/initialize.ps14
1 files changed, 2 insertions, 2 deletions
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
}