This commit is contained in:
manuel 2024-07-15 12:37:11 +00:00
parent d8469f4814
commit 9a0d199951
1 changed files with 3 additions and 5 deletions

View File

@ -225,16 +225,14 @@ class BuildServer(BuildBase):
""" This class will ensure the Server builds are built """
def __init__(self, sbase, sarch):
"""
init the building, super will
ensure that the method resolution order (MRO) is followed
correctly, allowing for a smooth inheritance hierarchy
Initiate the building process for the Server.
Call super().__init__() with appropriate parameters.
"""
super().__init__(sbase, sarch, self.server_helper)
def server_helper(self):
"""
The helper functions to ensure the server requirements are
used
Helper method to assist in server-specific build tasks.
"""
arch_suffix = self.sarch[1:]
cmd_list = None