Get rid of /app hardcodes

Signed-off-by: InsanePrawn <insane.prawny@gmail.com>
This commit is contained in:
InsanePrawn 2021-09-30 17:18:32 +02:00
parent 0e21f9060d
commit 482c5f8111
6 changed files with 7 additions and 7 deletions

View file

@ -14,7 +14,7 @@ def create_chroot(
chroot_name,
arch='aarch64',
packages=['base'],
pacman_conf='/app/local/etc/pacman.conf',
pacman_conf=os.path.join(config.runtime['script_source_dir'], 'local/etc/pacman.conf'),
extra_repos: dict[str, RepoInfo] = {},
chroot_base_path: str = None,
):