1
1
mirror of https://github.com/tweag/asterius.git synced 2024-10-26 17:34:39 +03:00
asterius/utils/ghcid.sh
2020-04-10 20:11:23 +02:00

17 lines
285 B
Bash
Executable File

#!/bin/bash -e
shopt -s globstar
cd asterius
stack exec ghci -- \
-package ghc \
-Wall \
-Wno-overflowed-literals \
-j \
-fno-code \
+RTS -N -A64m -n2m -RTS \
$(echo src-types/**/*.hs) \
$(echo src/**/*.hs) \
$(echo $(stack path --dist-dir)/build/autogen/**/*.hs)