소스 검색

master Forgot a comma

Mike Smith 12 년 전
부모
커밋
94d27b4c4a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      evhttp-sharp/setup.py

+ 1 - 1
evhttp-sharp/setup.py

@@ -13,7 +13,7 @@ def start(args, logfile, errfile):
   try:
     # build
     subprocess.check_call("rm -rf bin obj", shell=True, cwd=app, stdout=logfile, stderr=errfile)
-    subprocess.check_call("xbuild /p:Configuration=Release", shell=True, cwd=app stdout=logfile, stderr=errfile)
+    subprocess.check_call("xbuild /p:Configuration=Release", shell=True, cwd=app, stdout=logfile, stderr=errfile)
     
     subprocess.Popen("mono -O=all bin/Release/EvHttpSharpBenchmark.exe 127.0.0.1 8085 " + str(args.max_threads) + " &", shell=True, cwd=app, stdout=logfile, stderr=errfile)
     return 0