shard-spectator/util/nightly.sh

8 lines
168 B
Bash
Executable File

#!/usr/bin/env sh
set -e
readonly image=crystallang/crystal:nightly
readonly code=/project
docker run -it -v "$PWD:${code}" -w "${code}" "${image}" crystal spec "$@"