1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-07-14 13:00:08 +02:00

Fix nightly --archive-older command line option

This commit is contained in:
Torsten Grote 2020-05-11 10:23:26 -03:00
parent 3de72bdb0e
commit db96753902
No known key found for this signature in database
GPG Key ID: 3E5F77D92CF891FF

View File

@ -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()