dart.fetchGitHashesScript: fetch submodules to match behavior of fetchgit

This commit is contained in:
DSeeLP
2026-03-22 22:48:18 +01:00
parent 91ceb77b9e
commit d777e6d6e4
@@ -9,7 +9,7 @@ from pathlib import Path
def fetch_git_hash(url: str, rev: str) -> str:
result = subprocess.run(
["nix-prefetch-git", "--url", url, "--rev", rev],
["nix-prefetch-git", "--fetch-submodules", "--url", url, "--rev", rev],
capture_output=True,
text=True,
check=True,