Skip to content
Snippets Groups Projects
Commit a1f8dfd6 authored by Éloïs's avatar Éloïs
Browse files

Add new file

parent 3e814b8c
No related branches found
No related tags found
No related merge requests found
Pipeline #6365 canceled
#!/bin/bash
echo '# Alias definitions.' >> .bashrc
echo '. ~/.bash_aliases' >> .bashrc
echo '# Useful aliases for the Dunitrust project' > .bash_aliases
alias cb="cargo fmt && cargo build"
alias cbr="cargo fmt && cargo build --release"
echo 'alias cbrf="cargo fmt && cargo build --release --manifest-path bin/dunitrust-server/Cargo.toml --features ssl"' >> .bash_aliases
alias cc="cargo fmt && cargo check"
alias cp="cargo clippy"
alias cr="cargo run --release --"
alias fmt="cargo fmt"
alias tc="cargo fmt && cargo test --package"
alias ta="cargo fmt && cargo test --all"
alias tac="cargo fmt && cargo tarpaulin --all -i -o Html -- --skip test_connection_negociation"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment