Browse Source

Missing cabal configure command for yesod

Patrick Falls 12 years ago
parent
commit
07c9fa389e
1 changed files with 1 additions and 0 deletions
  1. 1 0
      yesod/setup.py

+ 1 - 0
yesod/setup.py

@@ -9,6 +9,7 @@ def start(args):
   
   subprocess.check_call("cabal update", shell=True, cwd="yesod/bench")
   subprocess.check_call("cabal install --only-dependencies", shell=True, cwd="yesod/bench")
+  subprocess.check_call("cabal configure", shell=True, cwd="yesod/bench")
   subprocess.check_call("cabal build", shell=True, cwd="yesod/bench")
 
   db_host = args.database_host