summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Davison <dandavison7@gmail.com>2021-04-15 06:17:49 -0400
committerDan Davison <dandavison7@gmail.com>2021-04-20 21:44:28 -0400
commitd4df124dcef9a828cc0f91d04d4438530e1c66c7 (patch)
tree7a9192906f2edb401997afdafe439ba3a36d4bd9
parent7d91d1d2f6ca787696909b68c8ef37d996e7dcc7 (diff)
Fix Makefile escaping
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7b439c2d..5396ff22 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@ build:
cargo build --release
format:
- git ls-files | grep '\.rs$' | xargs -P 0 rustfmt
+ git ls-files | grep '\.rs$$' | xargs -P 0 rustfmt
lint:
cargo clippy