Skip to content

Commit

Permalink
Fix typos in install.ps1
Browse files Browse the repository at this point in the history
  • Loading branch information
carschandler authored Mar 7, 2024
1 parent ddc7f24 commit 90d0f25
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ curl.exe -L -o micromamba.exe $RELEASE_URL

New-Item -ItemType Directory -Force -Path $Env:LocalAppData\micromamba | out-null

$MAMBA_INSTALL_PATH = Join-Path -Path $Env:LocalAppData -ChildPAth micromamba\micromamba.exe
$MAMBA_INSTALL_PATH = Join-Path -Path $Env:LocalAppData -ChildPath micromamba\micromamba.exe

Write-Output "`nInstalling micromamba to $Env:LocalAppData\micromamba`n"
Move-Item -Force micromamba.exe $MAMBA_INSTALL_PATH | out-null
Expand Down Expand Up @@ -40,5 +40,5 @@ if ($choice -eq "y" -or $choice -eq "Y" -or $choice -eq "") {
Write-Output $MAMBA_INSTALL_PATH
& $MAMBA_INSTALL_PATH shell init -s powershell -p $Env:UserProfile\micromamba
} 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"
}
Write-Output "`nYou can always initialize powershell or cmd.exe with micromamba by running `nmicromamba shell init -s powershell -p $Env:UserProfile\micromamba`n"
}

0 comments on commit 90d0f25

Please sign in to comment.