Skip to content

Commit

Permalink
Fix the path issue of install.ps1
Browse files Browse the repository at this point in the history
  • Loading branch information
pk5ls20 committed Feb 29, 2024
1 parent 946ea16 commit 4fa7ce3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ if ($choice -eq "y" -or $choice -eq "Y" -or $choice -eq "") {
Write-Output "Initializing micromamba in $prefix"
$MAMBA_INSTALL_PATH = Join-Path -Path $Env:LocalAppData -ChildPAth micromamba\micromamba.exe
Write-Output $MAMBA_INSTALL_PATH
& $MAMBA_INSTALL_PATH shell init -s powershell -p $Env:UserProfile\micromamba
& $MAMBA_INSTALL_PATH shell init -s powershell -p $prefix
} else {
Write-Output "`nYou can always initialize powershell pr cmd.exe with micromamba by running `nmicromamba shell init -s powershell -p $Env:UserProfile\micromamba`n"
}

0 comments on commit 4fa7ce3

Please sign in to comment.