Browse Source

Merge pull request #1316 from TechEmpower/fix-yesod-tests

Resolve Haskell's Yesod Test Error
Mike Smith 10 years ago
parent
commit
d3ce67ea96

+ 0 - 5
frameworks/Haskell/yesod/bash_profile.sh

@@ -1,5 +0,0 @@
-#!/bin/bash
-
-export CABAL_HOME=/opt/cabal/1.20
-export HASKELL_HOME=/opt/ghc/7.8.3
-export LANG=en_US.UTF-8

+ 1 - 1
frameworks/Haskell/yesod/bench/bench.cabal

@@ -19,7 +19,7 @@ executable         bench
                 CPP
 
     build-depends: base                          >= 4.7        && < 5
-                 , yesod-core                    >= 1.4.2      && < 1.5
+                 , yesod-core                    >= 1.4.2      && < 1.4.6
                  , text                          >= 0.11       && < 1.3
                  , persistent                    >= 2.1        && < 2.2
                  , persistent-mysql              >= 2.1        && < 2.2

+ 1 - 1
frameworks/Haskell/yesod/install.sh

@@ -1,3 +1,3 @@
 #!/bin/bash
 
-fw_depends haskell
+fw_depends haskell

+ 2 - 0
frameworks/Haskell/yesod/setup.sh

@@ -1,5 +1,7 @@
 #!/bin/bash
 
+export HASKELL_HOME=/opt/ghc/7.8.3
+export CABAL_HOME=/opt/cabal/1.20
 export PATH=${HASKELL_HOME}/bin:$PATH
 
 cd bench