Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rg_tool: Fixed not working correctly on Windows with esp-idf 4.4
esp-idf 4.4 does some fancy powershell stuff instead of adding commands to the PATH: ```` function idf.py { &python "$IDF_PATH\tools\idf.py" $args } function espefuse.py { &python "$IDF_PATH\components\esptool_py\esptool\espefuse.py" $args } function espsecure.py { &python "$IDF_PATH\components\esptool_py\esptool\espsecure.py" $args } function otatool.py { &python "$IDF_PATH\components\app_update\otatool.py" $args } function parttool.py { &python "$IDF_PATH\components\partition_table\parttool.py" $args } ```` `subprocess.run`'s subshell can't see or run those.
- Loading branch information