From d4df124dcef9a828cc0f91d04d4438530e1c66c7 Mon Sep 17 00:00:00 2001 From: Dan Davison Date: Thu, 15 Apr 2021 06:17:49 -0400 Subject: Fix Makefile escaping --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3