Sha256: 68c3922c80b9a80894a2888f1369d5478c6ec1b372963a152613ea95783258ae
Contents?: true
Size: 392 Bytes
Versions: 30
Compression:
Stored size: 392 Bytes
Contents
#!/bin/bash set -e if [ -z "$(which mix)" ]; then echo "A local mix installation is required for elixir development." >&2 exit 127 fi # setup test fixtures BASE_PATH="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)" cd $BASE_PATH/test/fixtures/mix if [ "$1" == "-f" ]; then echo "removing old fixture setup..." mix deps.clean --all || true mix clean || true fi mix deps.get
Version data entries
30 entries across 30 versions & 1 rubygems