Updated
Signed-off-by: debianpepper <peppermintosteam@proton.me>
This commit is contained in:
parent
4fbbc85bd1
commit
0e0fa8ebd5
|
@ -96,7 +96,7 @@ def execute_build_cmds():
|
|||
cmd_list_setup = collections.deque(conf.shared_setup_cmds)
|
||||
cmd_size_setup = len(cmd_list_setup)
|
||||
for h in range(cmd_size_setup):
|
||||
x = cmd_list.popleft()
|
||||
x = cmd_list_setup.popleft()
|
||||
execute = x + '()'
|
||||
exec(execute)
|
||||
|
||||
|
@ -104,7 +104,7 @@ def execute_build_cmds():
|
|||
cmd_list_64 = collections.deque(conf.deb_64_cmds)
|
||||
cmd_size_64 = len(cmd_list_64)
|
||||
for h in range(cmd_size_64):
|
||||
x = cmd_list.popleft()
|
||||
x = cmd_list_64.popleft()
|
||||
execute = x + '()'
|
||||
exec(execute)
|
||||
|
||||
|
@ -112,7 +112,7 @@ def execute_build_cmds():
|
|||
cmd_list_build = collections.deque(conf.shared_run_build)
|
||||
cmd_size_build = len(cmd_list_build)
|
||||
for h in range(cmd_size_build):
|
||||
x = cmd_list.popleft()
|
||||
x = cmd_list_build.popleft()
|
||||
execute = x + '()'
|
||||
exec(execute)
|
||||
|
||||
|
|
Loading…
Reference in New Issue