mirror of
https://github.com/iyear/tdl
synced 2025-04-04 22:33:36 +08:00
fix(install): prevent to add tdl location to PATH env each time
This commit is contained in:
parent
2321013ee9
commit
8e6df9b0d7
@ -67,15 +67,17 @@ if (-not(Test-Path "$Repo.zip"))
|
|||||||
Expand-Archive -Path "$Repo.zip" -DestinationPath "$Location" -Force
|
Expand-Archive -Path "$Repo.zip" -DestinationPath "$Location" -Force
|
||||||
|
|
||||||
# if $LOCATION has not been added to PATH yet, add it
|
# if $LOCATION has not been added to PATH yet, add it
|
||||||
|
$PathEnv = [Environment]::GetEnvironmentVariable("Path", [EnvironmentVariableTarget]::Machine)
|
||||||
if (-not($PathEnv -like "*$Location*"))
|
if (-not($PathEnv -like "*$Location*"))
|
||||||
{
|
{
|
||||||
Write-Host "Try to add $Location to Path Environment variable..." -ForegroundColor Blue
|
Write-Host "Adding $Location to Path Environment variable..." -ForegroundColor Blue
|
||||||
|
|
||||||
$PathEnv = [Environment]::GetEnvironmentVariable("Path", [EnvironmentVariableTarget]::Machine)
|
|
||||||
$NewPath = $PathEnv + ";$Location"
|
$NewPath = $PathEnv + ";$Location"
|
||||||
[Environment]::SetEnvironmentVariable("Path", $NewPath, [EnvironmentVariableTarget]::Machine)
|
[Environment]::SetEnvironmentVariable("Path", $NewPath, [EnvironmentVariableTarget]::Machine)
|
||||||
# update current process' PATH
|
# update current process' PATH
|
||||||
[Environment]::SetEnvironmentVariable("Path", $NewPath, [EnvironmentVariableTarget]::Process)
|
[Environment]::SetEnvironmentVariable("Path", $NewPath, [EnvironmentVariableTarget]::Process)
|
||||||
|
|
||||||
|
Write-Host "Note: Updates to PATH might not be visible until you restart your terminal application or reboot machine" -ForegroundColor Yellow
|
||||||
}
|
}
|
||||||
# remove zip file
|
# remove zip file
|
||||||
Remove-Item "$Repo.zip"
|
Remove-Item "$Repo.zip"
|
||||||
@ -90,4 +92,3 @@ if (-not(Get-Command $Repo -ErrorAction SilentlyContinue))
|
|||||||
Write-Host "$Repo installed successfully! Location: $Location" -ForegroundColor Green
|
Write-Host "$Repo installed successfully! Location: $Location" -ForegroundColor Green
|
||||||
Write-Host "Run '$Repo' to get started" -ForegroundColor Green
|
Write-Host "Run '$Repo' to get started" -ForegroundColor Green
|
||||||
Write-Host "To get started with tdl, please visit https://docs.iyear.me/tdl" -ForegroundColor Green
|
Write-Host "To get started with tdl, please visit https://docs.iyear.me/tdl" -ForegroundColor Green
|
||||||
Write-Host "Note: Updates to PATH might not be visible until you restart your terminal application or reboot machine" -ForegroundColor Yellow
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user