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 and SylvainCorlay committed Jul 16, 2024
1 parent b005df8 commit 723a20b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 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 @@ -41,4 +41,4 @@ if ($choice -eq "y" -or $choice -eq "Y" -or $choice -eq "") {
& $MAMBA_INSTALL_PATH shell init -s powershell -p $prefix
} else {
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 723a20b

Please sign in to comment.