Browse Source

yeah we need pipe, check_call waits

Simon Oberhammer 12 years ago
parent
commit
53a5696f9c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      ringojs/setup.py

+ 1 - 1
ringojs/setup.py

@@ -8,7 +8,7 @@ def start(args):
   setup_util.replace_text("ringojs/ringo-main.js", "dbHost = '.*';", "dbHost = '" + args.database_host + "';")
 
   try:
-    subprocess.check_call("ringo --production ringo-main.js", shell=True, cwd="ringojs")
+    subprocess.Popen("ringo --production ringo-main.js", shell=True, cwd="ringojs")
     return 0
   except subprocess.CalledProcessError:
     return 1