From 4a48e78ec0e0c971fb314b3650b7871420337259 Mon Sep 17 00:00:00 2001 From: InsanePrawn Date: Tue, 2 Apr 2024 01:39:01 +0200 Subject: [PATCH] config: add gpg dir to chroot paths --- config/scheme.py | 1 + config/state.py | 1 + constants.py | 1 + 3 files changed, 3 insertions(+) diff --git a/config/scheme.py b/config/scheme.py index a5846ba..c27ee16 100644 --- a/config/scheme.py +++ b/config/scheme.py @@ -67,6 +67,7 @@ class PathsSection(DictScheme): images: str ccache: str rust: str + gpg: str class ProfilesSection(DictScheme): diff --git a/config/state.py b/config/state.py index 2d1ba42..ab144e1 100644 --- a/config/state.py +++ b/config/state.py @@ -44,6 +44,7 @@ CONFIG_DEFAULTS_DICT = { 'images': os.path.join('%cache_dir%', 'images'), 'ccache': os.path.join('%cache_dir%', 'ccache'), 'rust': os.path.join('%cache_dir%', 'rust'), + 'gpg': os.path.join('%cache_dir%', 'gpg'), }, 'profiles': { 'current': 'default', diff --git a/constants.py b/constants.py index 8fde0d2..abef1ad 100644 --- a/constants.py +++ b/constants.py @@ -156,6 +156,7 @@ CHROOT_PATHS = { 'packages': '/packages', 'pkgbuilds': '/pkgbuilds', 'images': '/images', + 'gpg': '/gpg', } WRAPPER_TYPES = [