We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08ec2cb commit 3a5212eCopy full SHA for 3a5212e
readme.md
@@ -210,7 +210,7 @@ This pastebin:
210
to your Git hooks:
211
212
```bash
213
- $ cat tools/prepush >> .git/hooks/pre-push
+ $ cp -a tools/prepush .git/hooks/pre-push
214
```
215
216
Alternately, just run `./tools/prepush` yourself before pushing.
tools/prepush
@@ -1,5 +1,5 @@
1
#!/usr/bin/env bash
2
-echo "[prepush] Running cargo fmt --check"
3
-cargo fmt -- --check
+echo "[prepush] Running cargo fmt"
+cargo fmt
4
echo "[prepush] Running cargo clippy"
5
cargo clippy -- -Dwarnings
0 commit comments