diff options
author | William Hubbs <w.d.hubbs@gmail.com> | 2014-12-30 10:46:24 -0600 |
---|---|---|
committer | Pawel Hajdan, Jr <phajdan.jr@gentoo.org> | 2014-12-29 15:58:15 +0100 |
commit | e484b1da3bd10769d331ab4e914fa45c5660e726 (patch) | |
tree | ff214b17704452680120d435553733f98869b16d | |
parent | Fix subprocess handling in batch-stabilize (diff) | |
download | arch-tools-e484b1da3bd10769d331ab4e914fa45c5660e726.tar.gz arch-tools-e484b1da3bd10769d331ab4e914fa45c5660e726.tar.bz2 arch-tools-e484b1da3bd10769d331ab4e914fa45c5660e726.zip |
batch-stabilize: use include-arches option
-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 = {} |