aboutsummaryrefslogtreecommitdiff
path: root/modules/launch_utils.py
diff options
context:
space:
mode:
authorAkiba <akiba@anzu.link>2023-06-29 18:46:52 +0800
committerAkiba <akiba@anzu.link>2023-06-29 18:46:52 +0800
commit0416a7bfbaecab20a4ae4cd8330faee556bb3d89 (patch)
treef4b5584c54929ec724fe1d2a0f54f07ec37d7603 /modules/launch_utils.py
parentfab73f2e7d388ca99cdb3d5de7f36c0b9a1a3b1c (diff)
fix can't get current hash
Diffstat (limited to 'modules/launch_utils.py')
-rw-r--r--modules/launch_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/launch_utils.py b/modules/launch_utils.py
index 97539e68..0e0dbca4 100644
--- a/modules/launch_utils.py
+++ b/modules/launch_utils.py
@@ -142,7 +142,7 @@ def git_clone(url, dir, name, commithash=None):
if commithash is None:
return
- current_hash = run(f'"{git}" -C "{dir}" rev-parse HEAD', None, f"Couldn't determine {name}'s hash: {commithash}").strip()
+ current_hash = run(f'"{git}" -C "{dir}" rev-parse HEAD', None, f"Couldn't determine {name}'s hash: {commithash}", live=False).strip()
if current_hash == commithash:
return