From 723a20b4cec7b9f20cbb3f633c2f92bd74841df5 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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.ps1 b/install.ps1 index eae6713..ee5ce63 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 @@ -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" -} \ No newline at end of file +}