mirror of
https://github.com/hercules-ci/arion.git
synced 2024-11-23 00:32:12 +03:00
13 lines
262 B
Plaintext
Executable File
13 lines
262 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 'ghci -isrc/haskell/exe src/haskell/exe/Main.hs' \
|
|
--reload=src/haskell \
|
|
--restart=arion-compose.cabal \
|
|
;
|