1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-17 10:40:12 +02:00

Correction to no-checksum

This commit is contained in:
Ciaran Gultnieks 2015-01-11 17:46:42 +00:00
parent 49549f4cad
commit 75aa384e80

View File

@ -124,7 +124,7 @@ def update_serverwebroot(serverwebroot, repo_section):
# use a checksum comparison for accurate comparisons on different
# filesystems, for example, FAT has a low resolution timestamp
rsyncargs = ['rsync', '--archive', '--delete']
if not options.nochecksum:
if not options.no_checksum:
rsyncargs.append('--checksum')
if options.verbose:
rsyncargs += ['--verbose']