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()