Skip to content

Commit

Permalink
Detect some more missing categories (#23702)
Browse files Browse the repository at this point in the history
  • Loading branch information
DonJayamanne authored Jun 25, 2024
1 parent 46d9d84 commit eff4a7e
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,10 @@ class NativeGlobalPythonFinderImpl extends DisposableBase implements NativeGloba
case 'mac-command-line-tools':
case 'mac-xcode':
case 'windows-registry':
case 'linux-global':
return PythonEnvKind.System;
case 'global-paths':
return PythonEnvKind.OtherGlobal;
case 'pyenv':
case 'pyenv-other':
return PythonEnvKind.Pyenv;
Expand Down

0 comments on commit eff4a7e

Please sign in to comment.