mega345evolutions commited on
Commit
81b147a
·
verified ·
1 Parent(s): aebe763

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -28,7 +28,7 @@ def home():
28
 
29
  def run_bash_command():
30
  try:
31
- subprocess.run(["bash", "startup"], check=True)
32
  print("✅ 'startup' script executed successfully.")
33
  except subprocess.CalledProcessError as e:
34
  print(f"❌ Error running 'startup': {e}")
 
28
 
29
  def run_bash_command():
30
  try:
31
+ subprocess.run(["bash", "-c", "./startup &"], check=True)
32
  print("✅ 'startup' script executed successfully.")
33
  except subprocess.CalledProcessError as e:
34
  print(f"❌ Error running 'startup': {e}")