ソースを参照

master Forgot a comma

Mike Smith 11 年 前
コミット
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