mirror of
https://github.com/carp-lang/Carp.git
synced 2024-11-05 04:44:12 +03:00
11 lines
141 B
Bash
Executable File
11 lines
141 B
Bash
Executable File
if [ -z "$CARP" ]
|
|
then
|
|
if [ -z "$NIX_CC" ]
|
|
then
|
|
CARP="stack exec carp --"
|
|
else
|
|
CARP="cabal -v0 run carp --"
|
|
fi
|
|
fi
|
|
$CARP $*
|