Skip to content

Commit

Permalink
sort path in bootstrap call alphabetically for easier maintenance
Browse files Browse the repository at this point in the history
  • Loading branch information
Okeanos committed Dec 25, 2023
1 parent 30ebd02 commit 4c7978a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bootstrap.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ Function initPowershell
function DoIt
{
Write-Host "Creating target directories"
New-Item -Path "$( $ENV:UserProfile )\.m2" -ItemType Directory -Force | Out-Null
New-Item -Path "$( $ENV:AppData )\Code\User" -ItemType Directory -Force | Out-Null
New-Item -Path "$( $ENV:UserProfile )\.config" -ItemType Directory -Force | Out-Null
New-Item -Path "$( $ENV:UserProfile )\.m2" -ItemType Directory -Force | Out-Null
New-Item -Path "$( $ENV:UserProfile )\.ssh\config.d" -ItemType Directory -Force | Out-Null
New-Item -Path "$( $ENV:UserProfile )\.vim\backups", "$( $ENV:UserProfile )\.vim\colors", "$( $ENV:UserProfile )\.vim\swaps", "$( $ENV:UserProfile )\.vim\syntax", "$( $ENV:UserProfile )\.vim\undo" -ItemType Directory -Force | Out-Null
New-Item -Path "$( $ENV:AppData )\Code\User" -ItemType Directory -Force | Out-Null

Write-Host "Linking files"
LinkFiles "$( $PSScriptRoot )\stow\curl\" "$( $ENV:UserProfile )\"
Expand Down

0 comments on commit 4c7978a

Please sign in to comment.