Skip to content

Commit 8c59d10

Browse files
committed
tmp
1 parent aeb4bd1 commit 8c59d10

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

buildbot/update_authors.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ def git_tree_is_clean():
3232

3333
# unshallow the repo if precommit.ci is running
3434
if is_precommit_ci:
35-
subprocess.run(["git", "fetch", "--unshallow"])
35+
cmd = f'git fetch --unshallow'
36+
output = subprocess.check_output(cmd, shell=True).decode()
37+
print(output)
3638

3739
if is_precommit_ci or git_tree_clean or PRE_COMMIT == None:
3840
if PRE_COMMIT == None:

0 commit comments

Comments
 (0)