Remove the "quiet" option
This commit is contained in:
parent
38cb46eb99
commit
a3596a214f
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ def project_exists(project: str) -> bool:
|
||||||
def get_remote_hash(url: str, branch: str = "master") -> str:
|
def get_remote_hash(url: str, branch: str = "master") -> str:
|
||||||
|
|
||||||
gitcmd = git.cmd.Git()
|
gitcmd = git.cmd.Git()
|
||||||
revision = gitcmd.ls_remote(url, branch, quiet=True, refs=True)
|
revision = gitcmd.ls_remote(url, branch, refs=True)
|
||||||
git_hash, branch = revision.split("\t")
|
git_hash, branch = revision.split("\t")
|
||||||
return git_hash
|
return git_hash
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue