1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-21 04:10:37 +02:00

fix(deploy): remove the --index-only flag

This commit is contained in:
proletarius101 2024-06-04 20:22:56 +08:00
parent 48c48596a8
commit c26267a7f9
No known key found for this signature in database

View File

@ -871,12 +871,6 @@ def main():
help=_("Don't use rsync checksums")) help=_("Don't use rsync checksums"))
parser.add_argument("--no-keep-git-mirror-archive", action="store_true", default=False, parser.add_argument("--no-keep-git-mirror-archive", action="store_true", default=False,
help=_("If a git mirror gets to big, allow the archive to be deleted")) help=_("If a git mirror gets to big, allow the archive to be deleted"))
parser.add_argument(
"--index-only",
action="store_true",
default=False,
help="Only deploy the index files entry.* and index-v*.json",
)
options = parser.parse_args() options = parser.parse_args()
config = common.read_config(options) config = common.read_config(options)