mirror of
https://github.com/ClementTsang/bottom
synced 2024-11-23 04:33:10 +00:00
11 lines
175 B
Bash
Executable file
11 lines
175 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
echo "Running pre-push hook:"
|
|
|
|
echo "Executing: cargo clippy -- -D clippy::all"
|
|
cargo clippy -- -D clippy::all
|
|
|
|
# echo "Executing: cargo test"
|
|
# cargo test
|