Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion tools/export_utils/activate_venv.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,8 @@ def detect_shell(args: Any) -> str:
break
current_pid = parent_pid

return detected_shell_name
# On Windows shell names are case-insensitive, but ESP-IDF defines them in lowercase
return detected_shell_name.lower() if sys.platform == 'win32' else detected_shell_name


@status_message('Detecting outdated tools in system', rv_on_ok=True)
Expand Down