Skip to content

Commit 7598006

Browse files
Add convenience scripts (#11)
* Add convenience scripts * Update scripts to allow for --release
1 parent 92113be commit 7598006

File tree

4 files changed

+13
-0
lines changed

4 files changed

+13
-0
lines changed

bin/check

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
3+
cargo test

bin/fastcheck

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/bash
2+
3+
cargo clippy --fix --allow-dirty
4+
cargo fmt --all -- --check

bin/run_client

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
3+
cargo run --bin client "$@"

bin/run_server

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
3+
cargo run --bin server "$@"

0 commit comments

Comments
 (0)