Set git_dir/sys_dir/cache_dir statically

This allows accessing their values without requiring a class instance.
This commit is contained in:
Dor Askayo 2023-01-13 13:15:27 +02:00
parent 938d919503
commit 693d01dc1b
3 changed files with 15 additions and 10 deletions

View file

@ -12,9 +12,10 @@ class SysB(SysGeneral):
"""
Class responsible for preparing sources for System B.
"""
git_dir = os.path.dirname(os.path.join(__file__))
sys_dir = os.path.join(git_dir, 'sysb')
def __init__(self, arch, preserve_tmp):
self.git_dir = os.path.dirname(os.path.join(__file__))
self.arch = arch
self.preserve_tmp = preserve_tmp
self.sys_dir = os.path.join(self.git_dir, 'sysb')