Testing: Bubbles Mod

Signed-off-by: debianpepper <pdpdebdevuan@protonmail.com>
This commit is contained in:
debianpepper 2023-09-29 20:26:25 +09:00
parent 54d0d9510b
commit 2d9b49cb04
1 changed files with 3 additions and 3 deletions

View File

@ -70,7 +70,7 @@ class BuildXfce:
else:
logger.warning("No active build specified!")
def deb_64_lb_helper():
def deb_64_lb_helper(self):
if bit_arch == 64:
lbsetup = conf.LBSET_DEB64
os.system(lbsetup)
@ -91,7 +91,7 @@ class BuildXfce:
logger.info(dir_current)
bit_arch = self.sarch[1:]
# Set the config tree
deb_64_lb_helper()
self.deb_64_lb_helper()
# Start with the XFCE stuff
if bit_arch == 64:
cmd_list = collections.deque(conf.build64_xfce_build)
@ -126,7 +126,7 @@ class BuildXfce:
logger.info(CFG_READY)
logger.info(START_LIVEBUILD)
logger.info(dir_current)
deb_64_lb_helper()
self.deb_64_lb_helper()
run_cmd = 'sudo lb build'
current_working_directory = os.getcwd()
os.chdir(HOME_FOLDER + FUSATO_ROOT)