mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-04 22:40:29 +03:00
Merge branch 'archive-fix' into 'master'
Fix nightly --archive-older command line option See merge request fdroid/fdroidserver!744
This commit is contained in:
commit
169d551683
1 changed files with 1 additions and 1 deletions
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue