Carp/build.sh
2019-10-30 11:30:38 +01:00

14 lines
170 B
Bash
Executable File

if [ -z "$CARP" ]
then
if [ -z "$NIX_CC" ]
then
stack build
else
cabal build
fi
fi
if which clang-format > /dev/null
then
clang-format -i core/*.h
fi