[espidf] Support github:// and https://github.com/.../.git framework sources (#16639)

This commit is contained in:
Jonathan Swoboda
2026-05-25 17:07:35 -04:00
committed by GitHub
parent 0b780f1fd2
commit fc0a4e2201
3 changed files with 256 additions and 20 deletions
+3 -2
View File
@@ -72,8 +72,9 @@ def run_git_command(cmd: list[str], git_dir: Path | None = None) -> str:
)
except FileNotFoundError as err:
raise GitNotInstalledError(
"git is not installed but required for external_components.\n"
"Please see https://git-scm.com/book/en/v2/Getting-Started-Installing-Git for installing git"
"git is not installed. See "
"https://git-scm.com/book/en/v2/Getting-Started-Installing-Git "
"for installation instructions."
) from err
if ret.returncode != 0 and ret.stderr: