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()
|
||||
print('=' * term_size.columns)
|
||||
print("INFO: Begin Live Build init")
|
||||
print("CurrenD -" + current_working_directory)
|
||||
print("INFO: Current working directory" +
|
||||
current_working_directory
|
||||
)
|
||||
print('=' * term_size.columns)
|
||||
lbsetup = conf.lbset_deb64
|
||||
os.system(lbsetup)
|
||||
# Loop though commands
|
||||
print("Config tree ready!")
|
||||
# Start with the XFCE stuff
|
||||
cmd_list_64 = collections.deque(conf.build64_xfce_build)
|
||||
list_size_64 = len(cmd_list_64)
|
||||
for _ in range(list_size_64):
|
||||
|
@ -83,13 +86,17 @@ class BuildXfce:
|
|||
print("INFO: Configs in place start the ISO build process")
|
||||
print('=' * term_size.columns)
|
||||
self.run_build()
|
||||
|
||||
# bld_list = collections.deque(conf.shared_run_build)
|
||||
# list_size = len(bld_list)
|
||||
# for _ in range(list_size):
|
||||
# i = bld_list.popleft()
|
||||
# execute = i + '()'
|
||||
# exec(execute)
|
||||
print('=' * term_size.columns)
|
||||
print("INFO: Current working directory" +
|
||||
current_working_directory
|
||||
)
|
||||
print('=' * term_size.columns)
|
||||
bld_list = collections.deque(conf.shared_run_build)
|
||||
list_size = len(bld_list)
|
||||
for _ in range(list_size):
|
||||
i = bld_list.popleft()
|
||||
execute = i + '()'
|
||||
exec(execute)
|
||||
elif self.sarch == '_32':
|
||||
lbsetup = conf.lbset_deb32
|
||||
os.system(lbsetup)
|
||||
|
|
Loading…
Reference in New Issue