Carp/build.sh

12 lines
184 B
Bash
Raw Normal View History

#!/usr/bin/env bash
2019-09-24 22:56:12 +03:00
if [ -z "$CARP" ]
then
if [ -z "$NIX_CC" ]
then
stack build
else
cabal build
fi
fi
command -v clang-format >/dev/null && clang-format -i core/*.h