mirror of
https://github.com/clash-verge-rev/clash-verge-rev
synced 2025-05-06 06:13:44 +08:00
17 lines
264 B
Bash
Executable File
17 lines
264 B
Bash
Executable File
#!/bin/bash
|
|
|
|
pnpm pretty-quick --staged
|
|
|
|
# 运行 clippy fmt
|
|
cargo fmt --manifest-path ./src-tauri/Cargo.toml
|
|
|
|
if [ $? -ne 0 ]; then
|
|
echo "rustfmt failed to format the code. Please fix the issues and try again."
|
|
exit 1
|
|
fi
|
|
|
|
git add .
|
|
|
|
# 允许提交
|
|
exit 0
|