Browse Source

slight change to path of jester install

Patrick Falls 12 years ago
parent
commit
5ca9b9d648
2 changed files with 3 additions and 3 deletions
  1. 2 2
      jester/benchmark_config
  2. 1 1
      jester/setup.py

+ 2 - 2
jester/benchmark_config

@@ -5,7 +5,7 @@
       "setup_file": "setup",
       "json_url": "/json",
       "port": 8080,
-      "sort": 129
+      "sort": 133
     }
   }]
-}
+}

+ 1 - 1
jester/setup.py

@@ -7,7 +7,7 @@ from os.path import expanduser
 home = expanduser("~")
 
 def start(args):
-  subprocess.check_call("nimrod c -d:release --path:jester hello.nim", shell=True, cwd="jester")
+  subprocess.check_call("nimrod c -d:release --path:../installs/jester/jester hello.nim", shell=True, cwd="jester")
   subprocess.check_call("sudo /usr/local/nginx/sbin/nginx -c " + home + "/FrameworkBenchmarks/jester/config/nginx.conf", shell=True)
   
   subprocess.Popen("./hello > /dev/null", shell=True, cwd="jester")