Updated
Signed-off-by: debianpepper <pdpdebdevuan@protonmail.com>
This commit is contained in:
parent
a055f53436
commit
f16ab16e4b
|
@ -63,11 +63,14 @@ class BuildXfce:
|
||||||
current_working_directory = os.getcwd()
|
current_working_directory = os.getcwd()
|
||||||
print('=' * term_size.columns)
|
print('=' * term_size.columns)
|
||||||
print("INFO: Begin Live Build init")
|
print("INFO: Begin Live Build init")
|
||||||
print("CurrenD -" + current_working_directory)
|
print("INFO: Current working directory" +
|
||||||
|
current_working_directory
|
||||||
|
)
|
||||||
print('=' * term_size.columns)
|
print('=' * term_size.columns)
|
||||||
lbsetup = conf.lbset_deb64
|
lbsetup = conf.lbset_deb64
|
||||||
os.system(lbsetup)
|
os.system(lbsetup)
|
||||||
# Loop though commands
|
print("Config tree ready!")
|
||||||
|
# Start with the XFCE stuff
|
||||||
cmd_list_64 = collections.deque(conf.build64_xfce_build)
|
cmd_list_64 = collections.deque(conf.build64_xfce_build)
|
||||||
list_size_64 = len(cmd_list_64)
|
list_size_64 = len(cmd_list_64)
|
||||||
for _ in range(list_size_64):
|
for _ in range(list_size_64):
|
||||||
|
@ -83,13 +86,17 @@ class BuildXfce:
|
||||||
print("INFO: Configs in place start the ISO build process")
|
print("INFO: Configs in place start the ISO build process")
|
||||||
print('=' * term_size.columns)
|
print('=' * term_size.columns)
|
||||||
self.run_build()
|
self.run_build()
|
||||||
|
print('=' * term_size.columns)
|
||||||
# bld_list = collections.deque(conf.shared_run_build)
|
print("INFO: Current working directory" +
|
||||||
# list_size = len(bld_list)
|
current_working_directory
|
||||||
# for _ in range(list_size):
|
)
|
||||||
# i = bld_list.popleft()
|
print('=' * term_size.columns)
|
||||||
# execute = i + '()'
|
bld_list = collections.deque(conf.shared_run_build)
|
||||||
# exec(execute)
|
list_size = len(bld_list)
|
||||||
|
for _ in range(list_size):
|
||||||
|
i = bld_list.popleft()
|
||||||
|
execute = i + '()'
|
||||||
|
exec(execute)
|
||||||
elif self.sarch == '_32':
|
elif self.sarch == '_32':
|
||||||
lbsetup = conf.lbset_deb32
|
lbsetup = conf.lbset_deb32
|
||||||
os.system(lbsetup)
|
os.system(lbsetup)
|
||||||
|
|
Loading…
Reference in New Issue