mirror of
https://github.com/carp-lang/Carp.git
synced 2024-11-05 04:44:12 +03:00
12 lines
190 B
Bash
Executable File
12 lines
190 B
Bash
Executable File
#!/usr/bin/env sh
|
|
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 || true
|