Merge branch 'bugfix/removed_working_directory_error_v5.0' into 'release/v5.0'

Tools bugfix: Removed working directory when using idf.py (v5.0)

See merge request espressif/esp-idf!24151
This commit is contained in:
Roland Dobai 2023-06-12 23:18:58 +08:00
commit 17a455dfa6

View File

@ -701,6 +701,12 @@ def main() -> None:
# Check the environment only when idf.py is invoked regularly from command line.
checks_output = None if SHELL_COMPLETE_RUN else check_environment()
# Check existance of the current working directory to prevent exceptions from click cli.
try:
os.getcwd()
except FileNotFoundError as e:
raise FatalError(f'ERROR: {e}. Working directory cannot be established. Check its existence.')
try:
cli = init_cli(verbose_output=checks_output)
except ImportError: