We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aeb4bd1 commit 8c59d10Copy full SHA for 8c59d10
1 file changed
buildbot/update_authors.py
@@ -32,7 +32,9 @@ def git_tree_is_clean():
32
33
# unshallow the repo if precommit.ci is running
34
if is_precommit_ci:
35
- subprocess.run(["git", "fetch", "--unshallow"])
+ cmd = f'git fetch --unshallow'
36
+ output = subprocess.check_output(cmd, shell=True).decode()
37
+ print(output)
38
39
if is_precommit_ci or git_tree_clean or PRE_COMMIT == None:
40
if PRE_COMMIT == None:
0 commit comments