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: build:
script: script:
- nix-shell -p rustc cargo " - nix-shell -p rustc cargo --cmd "sh -c '
rustc -vV rustc -vV &&
cargo -vV cargo -vV &&
cargo build" cargo build'"
test: test:
script: script:
- nix-shell -p cargo " - nix-shell -p cargo --cmd 'cargo test'
cargo test"