mirror of
https://github.com/hercules-ci/arion.git
synced 2024-11-23 09:38:12 +03:00
16 lines
276 B
Plaintext
16 lines
276 B
Plaintext
|
#!/usr/bin/env nix-shell
|
||
|
#!nix-shell -i bash
|
||
|
#!nix-shell ./shell.nix
|
||
|
|
||
|
# For quick manual testing of a hacked arion
|
||
|
|
||
|
# NB: Only works inside the project directory
|
||
|
|
||
|
cabal \
|
||
|
new-run \
|
||
|
--write-ghc-environment-files=never \
|
||
|
:pkg:arion-compose:exe:arion \
|
||
|
-- \
|
||
|
"$@" \
|
||
|
;
|