Sha256: b04863643ce51db9d79720fc1ac6093282efe047e1e142f27f84ea47c96a0183
Contents?: true
Size: 387 Bytes
Versions: 16
Compression:
Stored size: 387 Bytes
Contents
#!/bin/bash set -e if [ -z "$(which cabal)" ]; then echo "A local cabal installation is required for cabal development." >&2 exit 127 fi # setup test fixtures BASE_PATH="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)" cd $BASE_PATH/test/fixtures/cabal if [ "$1" == "-f" ]; then find . -not -regex "\.*" -and -not -path "*app*" -print0 | xargs -0 rm -rf fi cabal new-build
Version data entries
16 entries across 16 versions & 1 rubygems