From 2243411693fd41af64fb1f5db44cf1dbeba9e3fc Mon Sep 17 00:00:00 2001 From: Tatsunori Uchino Date: Thu, 21 Nov 2024 08:06:08 +0900 Subject: [PATCH] Additional fix of previous commit Co-authored-by: Arun Babu Neelicattu --- install-poetry.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-poetry.py b/install-poetry.py index 722e4af..f222f0c 100644 --- a/install-poetry.py +++ b/install-poetry.py @@ -278,7 +278,7 @@ A. Append the bin directory to your user environment variable `PATH`: [Environment]::SetEnvironmentVariable("Path", [Environment]::GetEnvironmentVariable("Path", "User") + ";{poetry_home_bin}", "User") ``` -B. Tries to appends the bin directory to PATH every when you run PowerShell (>=6 recommended): +B. Try to append the bin directory to PATH every when you run PowerShell (>=6 recommended): ``` echo 'if (-not (Get-Command poetry -ErrorAction Ignore)) {{ $env:Path += ";{poetry_home_bin}" }}' | Out-File -Append $PROFILE