Browse Source

remove log files before benchmarking.

AOYAMA Kazuharu 12 years ago
parent
commit
c40a664a37
1 changed files with 1 additions and 1 deletions
  1. 1 1
      treefrog/setup.py

+ 1 - 1
treefrog/setup.py

@@ -19,7 +19,7 @@ def start(args):
   try:
     subprocess.check_call("qmake -r CONFIG+=release", shell=True, cwd="treefrog")
     subprocess.check_call("make", shell=True, cwd="treefrog")
-    subprocess.check_call("rm -f ./*.log", shell=True, cwd="treefrog/log")
+    subprocess.check_call("rm -f log/*.log", shell=True, cwd="treefrog")
     subprocess.check_call("treefrog -d " + home + "/FrameworkBenchmarks/treefrog", shell=True)
     return 0
   except subprocess.CalledProcessError: