Update app.py
Browse files
app.py
CHANGED
@@ -6,7 +6,7 @@ import sys
|
|
6 |
# Run shell command and capture output in real-time
|
7 |
def init():
|
8 |
process = subprocess.Popen("""
|
9 |
-
bash run.sh
|
10 |
""", stdout=subprocess.PIPE, shell=True)
|
11 |
while True:
|
12 |
output = process.stdout.readline().decode()
|
|
|
6 |
# Run shell command and capture output in real-time
|
7 |
def init():
|
8 |
process = subprocess.Popen("""
|
9 |
+
bash ./run.sh
|
10 |
""", stdout=subprocess.PIPE, shell=True)
|
11 |
while True:
|
12 |
output = process.stdout.readline().decode()
|