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

Update add_useful_aliases.sh

parent 97640f0f
No related branches found
No related tags found
No related merge requests found
Pipeline #6376 passed
...@@ -5,13 +5,13 @@ echo '. ~/.bash_aliases' >> .bashrc ...@@ -5,13 +5,13 @@ echo '. ~/.bash_aliases' >> .bashrc
echo '# Useful aliases for the Dunitrust project' > .bash_aliases echo '# Useful aliases for the Dunitrust project' > .bash_aliases
alias cb="cargo fmt && cargo build" echo 'alias cb="cargo fmt && cargo build"' >> .bash_aliases
alias cbr="cargo fmt && cargo build --release" echo 'alias cbr="cargo fmt && cargo build --release"' >> .bash_aliases
echo 'alias cbrf="cargo fmt && cargo build --release --manifest-path bin/dunitrust-server/Cargo.toml --features ssl"' >> .bash_aliases 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" echo 'alias cc="cargo fmt && cargo check"' >> .bash_aliases
alias cp="cargo clippy" echo 'alias cp="cargo clippy"' >> .bash_aliases
alias cr="cargo run --release --" echo 'alias cr="cargo run --release --"' >> .bash_aliases
alias fmt="cargo fmt" echo 'alias fmt="cargo fmt"' >> .bash_aliases
alias tc="cargo fmt && cargo test --package" echo 'alias tc="cargo fmt && cargo test --package"' >> .bash_aliases
alias ta="cargo fmt && cargo test --all" echo 'alias ta="cargo fmt && cargo test --all"' >> .bash_aliases
alias tac="cargo fmt && cargo tarpaulin --all -i -o Html -- --skip test_connection_negociation" echo 'alias tac="cargo fmt && cargo tarpaulin --all -i -o Html -- --skip test_connection_negociation"' >> .bash_aliases
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment