From 1e1fec74cbd143098dba860553ff1b6bf0944d1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89lo=C3=AFs?= <elois@ifee.fr> Date: Tue, 6 Aug 2019 21:35:21 +0000 Subject: [PATCH] Update add_useful_aliases.sh --- add_useful_aliases.sh | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/add_useful_aliases.sh b/add_useful_aliases.sh index edf18b4..fbbb949 100644 --- a/add_useful_aliases.sh +++ b/add_useful_aliases.sh @@ -5,13 +5,13 @@ 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 cb="cargo fmt && cargo build"' >> .bash_aliases +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 -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" +echo 'alias cc="cargo fmt && cargo check"' >> .bash_aliases +echo 'alias cp="cargo clippy"' >> .bash_aliases +echo 'alias cr="cargo run --release --"' >> .bash_aliases +echo 'alias fmt="cargo fmt"' >> .bash_aliases +echo 'alias tc="cargo fmt && cargo test --package"' >> .bash_aliases +echo 'alias ta="cargo fmt && cargo test --all"' >> .bash_aliases +echo 'alias tac="cargo fmt && cargo tarpaulin --all -i -o Html -- --skip test_connection_negociation"' >> .bash_aliases -- GitLab