diff --git a/rolling-release-update.py b/rolling-release-update.py index 7b14ac7..e90cfaf 100644 --- a/rolling-release-update.py +++ b/rolling-release-update.py @@ -398,7 +398,7 @@ def check_for_fips_protected_changes(repo, branch, common_tag): commit_info = repo.git.show("--pretty=%h %s", "-s", ciq_commit) print(f" [{commits_applied}/{len(rolling_commit_map)}] {commit_info}") result = subprocess.run( - ["git", "cherry-pick", "-s", ciq_commit], stderr=subprocess.PIPE, stdout=subprocess.PIPE, cwd=args.repo + ["git", "cherry-pick", ciq_commit], stderr=subprocess.PIPE, stdout=subprocess.PIPE, cwd=args.repo ) if result.returncode != 0: print(f"[rolling release update] ERROR: Failed to cherry-pick commit {ciq_commit}")