Commit d777e6d6 authored by DSeeLP's avatar DSeeLP
Browse files

dart.fetchGitHashesScript: fetch submodules to match behavior of fetchgit

parent 91ceb77b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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,