[aur] renaming settings's property 'pacman_dep_check' to 'simple_checking'

This commit is contained in:
Vinícius Moreira
2020-02-11 17:15:20 -03:00
parent 999e94b3d7
commit fb8229e1ac
10 changed files with 27 additions and 25 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, "sync_databases": True, "pacman_dep_check": False}
template = {'optimize': True, 'transitive_checking': True, "sync_databases": True, "simple_checking": False}
return read(CONFIG_FILE, template, update_file=update_file)