Testing: Bubbles Mods
Signed-off-by: debianpepper <pdpdebdevuan@protonmail.com>
This commit is contained in:
parent
794e4036db
commit
6bd17bfcbb
|
@ -80,17 +80,27 @@ class BuildXfce:
|
||||||
# Start with the XFCE stuff
|
# Start with the XFCE stuff
|
||||||
if bit_arch == 64:
|
if bit_arch == 64:
|
||||||
cmd_list = collections.deque(conf.build64_xfce_build)
|
cmd_list = collections.deque(conf.build64_xfce_build)
|
||||||
|
list_size = len(cmd_list)
|
||||||
|
for _ in range(list_size):
|
||||||
|
i = cmd_list.popleft()
|
||||||
|
execute = i + '()'
|
||||||
|
exec(execute)
|
||||||
elif bit_arch == 32:
|
elif bit_arch == 32:
|
||||||
cmd_list = collections.deque(conf.build32_xfce_build)
|
cmd_list = collections.deque(conf.build32_xfce_build)
|
||||||
|
list_size = len(cmd_list)
|
||||||
|
for _ in range(list_size):
|
||||||
|
i = cmd_list.popleft()
|
||||||
|
execute = i + '()'
|
||||||
|
exec(execute)
|
||||||
elif bit_arch == "arm":
|
elif bit_arch == "arm":
|
||||||
cmd_list = collections.deque(conf.buildarm_xfce_build)
|
cmd_list = collections.deque(conf.buildarm_xfce_build)
|
||||||
|
list_size = len(cmd_list)
|
||||||
|
for _ in range(list_size):
|
||||||
|
i = cmd_list.popleft()
|
||||||
|
execute = i + '()'
|
||||||
|
exec(execute)
|
||||||
else:
|
else:
|
||||||
cmd_list = None
|
cmd_list = None
|
||||||
list_size = len(cmd_list)
|
|
||||||
for _ in range(list_size):
|
|
||||||
i = cmd_list.popleft()
|
|
||||||
execute = i + '()'
|
|
||||||
exec(execute)
|
|
||||||
# Run the specific classes
|
# Run the specific classes
|
||||||
infra.ChrootFolders(self.sbase, self.sarch)
|
infra.ChrootFolders(self.sbase, self.sarch)
|
||||||
infra.BinaryFolders(self.sbase, self.sarch)
|
infra.BinaryFolders(self.sbase, self.sarch)
|
||||||
|
|
Loading…
Reference in New Issue