mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 15:00:30 +03:00
Fix no-checksum option type for local sync (fixes #67)
This commit is contained in:
parent
581ad7f2a8
commit
6a780a5a27
1 changed files with 1 additions and 1 deletions
|
|
@ -166,7 +166,7 @@ def _local_sync(fromdir, todir):
|
|||
'--one-file-system', '--delete', '--chmod=Da+rx,Fa-x,a+r,u+w']
|
||||
# use stricter rsync checking on all files since people using offline mode
|
||||
# are already prioritizing security above ease and speed
|
||||
if not options.nochecksum:
|
||||
if not options.no_checksum:
|
||||
rsyncargs.append('--checksum')
|
||||
if options.verbose:
|
||||
rsyncargs += ['--verbose']
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue