mirror of
https://github.com/ClementTsang/bottom.git
synced 2025-04-08 17:05:59 +02:00
12 lines
175 B
Bash
Executable File
12 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
|