[aur] config file

This commit is contained in:
Vinícius Moreira
2019-12-18 18:19:00 -03:00
parent 9a852cda3f
commit 496f61a27b
8 changed files with 58 additions and 19 deletions

7
bauh/gems/arch/config.py Normal file
View File

@@ -0,0 +1,7 @@
from bauh.commons.config import read_config as read
from bauh.gems.arch import CONFIG_FILE
def read_config(update_file: bool = False) -> dict:
template = {'optimize': True, 'transitive_checking': True}
return read(CONFIG_FILE, template, update_file=update_file)