Track ninite processes directly
This commit is contained in:
parent
969011f3f5
commit
c1324548ce
1 changed files with 4 additions and 2 deletions
|
|
@ -41,11 +41,13 @@ if __name__ == '__main__':
|
||||||
if answer_vcr:
|
if answer_vcr:
|
||||||
install_vcredists()
|
install_vcredists()
|
||||||
if answer_ninite:
|
if answer_ninite:
|
||||||
try_and_print(message='Ninite bundle...',
|
result = try_and_print(message='Ninite bundle...',
|
||||||
function=install_ninite_bundle, cs='Started',
|
function=install_ninite_bundle, cs='Started',
|
||||||
mse=answer_mse, other_results=other_results)
|
mse=answer_mse, other_results=other_results)
|
||||||
|
for proc in result['Out']:
|
||||||
|
# Wait for all processes to finish
|
||||||
|
proc.wait()
|
||||||
if answer_extensions:
|
if answer_extensions:
|
||||||
wait_for_process('ninite.exe')
|
|
||||||
print_info('Installing Extensions')
|
print_info('Installing Extensions')
|
||||||
try_and_print(message='Classic Shell skin...',
|
try_and_print(message='Classic Shell skin...',
|
||||||
function=install_classicstart_skin,
|
function=install_classicstart_skin,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue