mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 00:04:15 +02:00
[arch] improvement -> AUR: new settings property 'aur_build_dir'
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
from pathlib import Path
|
||||
|
||||
from bauh.commons.config import read_config as read
|
||||
from bauh.gems.arch import CONFIG_FILE
|
||||
from bauh.gems.arch import CONFIG_FILE, BUILD_DIR
|
||||
|
||||
|
||||
def read_config(update_file: bool = False) -> dict:
|
||||
@@ -13,5 +15,16 @@ def read_config(update_file: bool = False) -> dict:
|
||||
'mirrors_sort_limit': 5,
|
||||
'repositories_mthread_download': False,
|
||||
'automatch_providers': True,
|
||||
'edit_aur_pkgbuild': False}
|
||||
'edit_aur_pkgbuild': False,
|
||||
'aur_build_dir': None}
|
||||
return read(CONFIG_FILE, template, update_file=update_file)
|
||||
|
||||
|
||||
def get_build_dir(arch_config: dict) -> str:
|
||||
build_dir = arch_config.get('aur_build_dir')
|
||||
|
||||
if not build_dir:
|
||||
build_dir = BUILD_DIR
|
||||
|
||||
Path(build_dir).mkdir(parents=True, exist_ok=True)
|
||||
return build_dir
|
||||
|
||||
Reference in New Issue
Block a user