Skip to content

Commit

Permalink
fix: Use home dir on windows (#449)
Browse files Browse the repository at this point in the history
Smaller solution than #448 

Decided to keep it simple to also make the documentation simpler. Now it
is just the home folder for everything.
  • Loading branch information
ruben-arts committed Nov 14, 2023
1 parent 83a05eb commit 4ee402b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install/install.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
param (
[string]$PIXI_VERSION = "latest",
[string]$PIXI_DIR = "$Env:LocalAppData\pixi\bin"
[string]$PIXI_DIR = "$Env:USERPROFILE\.pixi\bin"
)

# Repository name
Expand Down

0 comments on commit 4ee402b

Please sign in to comment.