mirror of
https://github.com/hercules-ci/arion.git
synced 2024-11-20 19:26:06 +03:00
14 lines
330 B
Plaintext
Executable File
14 lines
330 B
Plaintext
Executable File
#!/usr/bin/env nix-shell
|
|
#!nix-shell ./shell.nix
|
|
#!nix-shell -i bash
|
|
set -eux -o pipefail
|
|
|
|
cd "$(dirname "${BASH_SOURCE[0]}")"
|
|
|
|
ghcid \
|
|
--command 'cabal v2-repl arion-compose:arion-unit-tests --flags ghci --write-ghc-environment-files=never' \
|
|
--test=Main.main \
|
|
--reload=src/haskell \
|
|
--restart=arion-compose.cabal \
|
|
;
|