forked from faylang/fay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSetup.hs
19 lines (16 loc) · 963 Bytes
/
Setup.hs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
module Main where
import Distribution.PackageDescription
import Distribution.Simple
main = defaultMainWithHooks simpleUserHooks
{ preConf = \_args _flags -> do putStrLn reminder
return emptyHookedBuildInfo
}
reminder =
" \n\
\- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n\
\ \n\
\ REMEMBER: This compiler is in flux, supercalifragelistic style. You should \n\
\ read the CHANGELOG for this release as the changes probably \n\
\ affect you. \n\
\ \n\
\- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n"