mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
7 lines
168 B
Bash
Executable file
7 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 "$@"
|