12 lines
317 B
Python
12 lines
317 B
Python
import os, time
|
|
|
|
n = 0
|
|
while True:
|
|
print('Relauncher: Launching...')
|
|
if n > 0:
|
|
print(f'\tRelaunch count: {n}')
|
|
launch_string = "/workspace/stable-diffusion-webui/webui.sh -f"
|
|
os.system(launch_string)
|
|
print('Relauncher: Process is ending. Relaunching in 2s...')
|
|
n += 1
|
|
time.sleep(2) |