mirror of
https://github.com/f-droid/fdroidserver.git
synced 2026-01-30 02:01:41 -05:00
Fix nightly --archive-older command line option
This commit is contained in:
committed by
Hans-Christoph Steiner
parent
dcb72a77ce
commit
3282687f9e
@@ -102,7 +102,7 @@ def main():
|
||||
help=_('The file to be included in the repo (path or glob)'))
|
||||
parser.add_argument("--no-checksum", action="store_true", default=False,
|
||||
help=_("Don't use rsync checksums"))
|
||||
parser.add_argument("--archive-older", default=20,
|
||||
parser.add_argument("--archive-older", type=int, default=20,
|
||||
help=_("Set maximum releases in repo before older ones are archived"))
|
||||
# TODO add --with-btlog
|
||||
options = parser.parse_args()
|
||||
|
||||
Reference in New Issue
Block a user