Fix nix-shell syntax

This commit is contained in:
Arne Keller 2021-03-20 22:29:51 +01:00
parent 7e11807eed
commit c5c8acfaa6

View File

@ -3,11 +3,10 @@ variables:
build:
script:
- nix-shell -p rustc cargo "
rustc -vV
cargo -vV
cargo build"
- nix-shell -p rustc cargo --cmd "sh -c '
rustc -vV &&
cargo -vV &&
cargo build'"
test:
script:
- nix-shell -p cargo "
cargo test"
- nix-shell -p cargo --cmd 'cargo test'