mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Tools bugfix: Removed working directory when using idf.py
Added check for existence of current working directory when using idf.py Closes https://github.com/espressif/esp-idf/issues/11476
This commit is contained in:
parent
7493b907ef
commit
5a7eae4743
@ -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:
|
||||
|
Loading…
x
Reference in New Issue
Block a user