We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8b4cdbd + bf9814c commit 695736fCopy full SHA for 695736f
1 file changed
build/add-to-path.ps1
@@ -4,7 +4,7 @@ param($InstallDir)
4
5
$TargetUser = [System.EnvironmentVariableTarget]::User
6
$path = [System.Environment]::GetEnvironmentVariable('PATH', $TargetUser) -split ';'
7
-$desiredPath = Join-Path $InstallDir 'resources\win32\bin'
+$desiredPath = Join-Path $InstallDir 'resources\resources\win32\bin'
8
if ($path -notcontains $desiredPath) {
9
$path += $desiredPath
10
[System.Environment]::SetEnvironmentVariable('PATH', ($path -join ';'), $TargetUser)
0 commit comments