[improvement][aur] synchronizing the package databases once a day

This commit is contained in:
Vinícius Moreira
2020-01-30 11:17:55 -03:00
parent 822e11b8d0
commit 9df3effce3
11 changed files with 129 additions and 35 deletions

View File

@@ -3,5 +3,5 @@ from bauh.gems.arch import CONFIG_FILE
def read_config(update_file: bool = False) -> dict:
template = {'optimize': True, 'transitive_checking': True}
template = {'optimize': True, 'transitive_checking': True, "sync_databases": True}
return read(CONFIG_FILE, template, update_file=update_file)