mirror of
https://github.com/espressif/esp-idf.git
synced 2025-10-04 02:50:58 +02:00
fix(tools): Tool curses import check
Verify that curses tool can be successfully imported on unix systems When detected: - installing esp-idf -> reinstall python environment - using idf.py menuconfig -> raise error with hint message Closes https://github.com/espressif/esp-idf/issues/11643
This commit is contained in:
@@ -703,7 +703,7 @@ def main() -> None:
|
||||
try:
|
||||
os.getcwd()
|
||||
except FileNotFoundError as e:
|
||||
raise FatalError(f'ERROR: {e}. Working directory cannot be established. Check it\'s existence.')
|
||||
raise FatalError(f'ERROR: {e}. Working directory cannot be established. Check its existence.')
|
||||
|
||||
try:
|
||||
cli = init_cli(verbose_output=checks_output)
|
||||
|
Reference in New Issue
Block a user