1
1
mirror of https://github.com/nmattia/niv.git synced 2024-09-05 20:15:26 +03:00

Fixing the build on darwin by adding those magical ghc flags to clear the global db (which should not be global, because of nix) - say no more

This commit is contained in:
Jakub Janczak 2019-06-16 10:15:06 +02:00
parent 0ca1bf22f7
commit d54f3eae7d

View File

@ -51,7 +51,7 @@ with rec
''
repl() {
shopt -s globstar
ghci -Wall app/NivTest.hs src/**/*.hs
ghci -clear-package-db -global-package-db -Wall app/NivTest.hs src/**/*.hs
}
echo "To start a REPL session, run:"