Skip to content

Commit

Permalink
print for test
Browse files Browse the repository at this point in the history
  • Loading branch information
doshitan committed Dec 26, 2024
1 parent ef1b4ae commit f7be8b0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion nava/platform/util/git.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,4 +157,6 @@ def clone_to(url: str, dest: Path, ref: str | None = None) -> subprocess.Complet


def run_text(*args: Any, **kwargs: Any) -> subprocess.CompletedProcess[str]:
return subprocess.run(*args, **kwargs, capture_output=True, text=True)
result = subprocess.run(*args, **kwargs, capture_output=True, text=True)
print(result)
return result

0 comments on commit f7be8b0

Please sign in to comment.