mirror of
https://github.com/aelve/guide.git
synced 2024-12-23 04:42:24 +03:00
Add no-js option for building
This commit is contained in:
parent
c5b0e561e9
commit
138265ac84
5
Setup.hs
5
Setup.hs
@ -1,7 +1,12 @@
|
|||||||
import Distribution.Simple
|
import Distribution.Simple
|
||||||
import System.Process
|
import System.Process
|
||||||
|
import System.Environment (lookupEnv)
|
||||||
|
|
||||||
main = do
|
main = do
|
||||||
|
js <- lookupEnv "NO_JS"
|
||||||
|
case js of
|
||||||
|
Just "true" -> defaultMain
|
||||||
|
_ -> do
|
||||||
hooks <- buildJS simpleUserHooks
|
hooks <- buildJS simpleUserHooks
|
||||||
defaultMainWithHooks hooks
|
defaultMainWithHooks hooks
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user