From 90d0f2560ab19652a8e731493849645486d993f7 Mon Sep 17 00:00:00 2001 From: carschandler <92899389+carschandler@users.noreply.github.com> Date: Thu, 7 Mar 2024 09:01:41 -0600 Subject: [PATCH] Fix typos in install.ps1 --- install.ps1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install.ps1 b/install.ps1 index 3c61c6f..c1c4efc 100644 --- a/install.ps1 +++ b/install.ps1 @@ -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 @@ -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" -} \ No newline at end of file + Write-Output "`nYou can always initialize powershell or cmd.exe with micromamba by running `nmicromamba shell init -s powershell -p $Env:UserProfile\micromamba`n" +}