소스 검색

Fixed some errors in the setup file

Patrick Falls 12 년 전
부모
커밋
2a7dcabd08
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      jester/setup.py

+ 1 - 1
jester/setup.py

@@ -11,7 +11,7 @@ def start(args):
   subprocess.check_call("sudo /usr/local/nginx/sbin/nginx -c " + home + "/FrameworkBenchmarks/jester/config/nginx.conf", shell=True)
   
   for i in range(0, 8):
-    subprocess.Popen("./hello 900" + i + " > /dev/null", shell=True, cwd="jester")
+    subprocess.Popen("./hello 900" + str(i) + " > /dev/null", shell=True, cwd="jester")
   return 0
 
 def stop():