diff --git a/manage_repos/manage_repos.py b/manage_repos/manage_repos.py index ff94153..1a10304 100644 --- a/manage_repos/manage_repos.py +++ b/manage_repos/manage_repos.py @@ -171,7 +171,7 @@ def merge(args): command.append("-r") case "squash": command.append("-s") - print(command) + subprocess.check_call(command) except subprocess.CalledProcessError as e: error = f"Error merging pull request {pr_number} in {name}: {e}"