diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-08-05 12:48:15 +0000 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-08-07 14:42:34 +0200 |
commit | 322c2d963226da968327288f5a5a9ba2a66601e7 (patch) | |
tree | 83aaddae3813fb9a4fff27f33fc7c4cd520f440b | |
parent | 48241422c0b40cf012232b618692f428dfc92be1 (diff) | |
download | jenkins.debian.net-322c2d963226da968327288f5a5a9ba2a66601e7.tar.xz |
reproducible: remote_scheduler: flag rename: -a/--artifacts to -k/--keep-artifacts
-rwxr-xr-x | bin/reproducible_remote_scheduler.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_remote_scheduler.py b/bin/reproducible_remote_scheduler.py index 17e03fd4..d81ba90d 100755 --- a/bin/reproducible_remote_scheduler.py +++ b/bin/reproducible_remote_scheduler.py @@ -22,7 +22,7 @@ parser = argparse.ArgumentParser( 'in the package list.') group = parser.add_mutually_exclusive_group() parser.add_argument('--dry-run', action='store_true') -group.add_argument('-a', '--artifacts', action='store_true', +group.add_argument('-k', '--keep-artifacts', action='store_true', help='Save artifacts (for further offline study)') group.add_argument('-n', '--notify', action='store_true', help='Notify the channel when the build finishes') @@ -71,7 +71,7 @@ status = scheduling_args.status built_after = scheduling_args.after built_before = scheduling_args.before packages = scheduling_args.packages -artifacts = scheduling_args.artifacts +artifacts = scheduling_args.keep_artifacts notify = scheduling_args.notify or scheduling_args.noisy debug_url = scheduling_args.noisy dry_run = scheduling_args.dry_run |