13 lines
292 B
Text
Executable file
13 lines
292 B
Text
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 'ghci -isrc/haskell/exe src/haskell/exe/Main.hs' \
|
|
--reload=src/haskell \
|
|
--restart=hercules-ci-api.cabal \
|
|
--restart=../stack.yaml \
|
|
;
|