Ignore environment in nix shell
This commit is contained in:
parent
947153ae4a
commit
ce7fa306e5
3 changed files with 3 additions and 3 deletions
2
bin/repl
2
bin/repl
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
set -xe
|
||||
|
||||
exec nix develop -c cabal -- repl
|
||||
exec nix develop -i -c cabal -- repl
|
||||
|
|
2
bin/run
2
bin/run
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
set -xe
|
||||
|
||||
exec nix develop -c ghcid -c "cabal repl exe:haskell-template" --warnings -T :main
|
||||
exec nix develop -i -c ghcid -c "cabal repl exe:haskell-template" --warnings -T :main
|
||||
|
|
2
bin/test
2
bin/test
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
set -xe
|
||||
|
||||
exec nix develop -c ghcid -c "cabal repl test:tests" -T :main
|
||||
exec nix develop -i -c ghcid -c "cabal repl test:tests" -T :main
|
||||
|
|
Loading…
Reference in a new issue