kopia lustrzana https://github.com/OpenDroneMap/ODM
Add rerun-all and rerun-from arguments
rodzic
a90c47eeec
commit
c25388b0c2
|
@ -29,7 +29,19 @@ parser.add_argument('--end-with', '-e',
|
||||||
choices=processopts,
|
choices=processopts,
|
||||||
help=('Can be one of:' + ' | '.join(processopts)))
|
help=('Can be one of:' + ' | '.join(processopts)))
|
||||||
|
|
||||||
parser.add_argument('--rerun', '-r',
|
rerun = parser.add_mutually_exclusive_group()
|
||||||
|
|
||||||
|
rerun.add_argument('--rerun', '-r',
|
||||||
|
metavar='<string>',
|
||||||
|
choices=processopts,
|
||||||
|
help=('Can be one of:' + ' | '.join(processopts)))
|
||||||
|
|
||||||
|
rerun.add_argument('--rerun-all',
|
||||||
|
action='store_true',
|
||||||
|
default=False,
|
||||||
|
help='force rerun of all tasks')
|
||||||
|
|
||||||
|
rerun.add_argument('--rerun-from',
|
||||||
metavar='<string>',
|
metavar='<string>',
|
||||||
choices=processopts,
|
choices=processopts,
|
||||||
help=('Can be one of:' + ' | '.join(processopts)))
|
help=('Can be one of:' + ' | '.join(processopts)))
|
||||||
|
|
Ładowanie…
Reference in New Issue