We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c8dba1 commit 2dffbc1Copy full SHA for 2dffbc1
1 file changed
Src/Scripts/Enter-IronPythonEnvironment.ps1
@@ -143,6 +143,8 @@ function global:prompt {
143
[string[]] $newEnvPaths = @($IronPythonEnvironmentPath)
144
if ($IsWindows) {
145
$newEnvPaths += Join-Path $IronPythonEnvironmentPath "Scripts"
146
+} else {
147
+ $newEnvPaths += Join-Path $IronPythonEnvironmentPath "bin"
148
}
149
$newEnvPaths += $env:PATH
150
$env:PATH = $newEnvPaths -join [IO.Path]::PathSeparator
0 commit comments