From 4aabb8f5aee942e10515b093ed286e58c23a2d2e Mon Sep 17 00:00:00 2001 From: IQuant Date: Tue, 26 Nov 2024 19:27:22 +0300 Subject: [PATCH] Automated commit: v0.30.6 --- scripts/check_pre_ci.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/check_pre_ci.py b/scripts/check_pre_ci.py index 8e832dbc..7f4dd573 100644 --- a/scripts/check_pre_ci.py +++ b/scripts/check_pre_ci.py @@ -39,8 +39,8 @@ def main(): print("Release already exists, exiting") exit(1) - subprocess.check_call(["git", "pull"]) - subprocess.check_call(["git", "commit", "-am", "Automated commit: "+tag]) + subprocess.run(["git", "pull"]) + subprocess.run(["git", "commit", "-am", "Automated commit: "+tag]) last_release = get_last_release()