diff options
-rwxr-xr-x | batch-stabilize.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/batch-stabilize.py b/batch-stabilize.py index 81f97ba..14cd69d 100755 --- a/batch-stabilize.py +++ b/batch-stabilize.py @@ -166,7 +166,8 @@ if __name__ == "__main__": if run_command(["repoman", "manifest"], cvs_path, log_file)[0] != 0: print('!!! repoman manifest failed') sys.exit(1) - if run_command(["repoman", "commit", "--ignore-arches", "-m", commit_message], cvs_path, log_file)[0] != 0: + if run_command(["repoman", "commit", + "--include-arches", options.arch, "-m", commit_message], cvs_path, log_file)[0] != 0: print('!!! repoman commit failed') sys.exit(1) params = {} |