From 25a1bbea7b88bdb79741ebe541b0cdd8bf1c3ca6 Mon Sep 17 00:00:00 2001 From: naskya Date: Mon, 22 Jan 2024 04:00:35 +0900 Subject: [PATCH] dev: fix Makefile to run clippy if rust sources are updated --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 680aa64d..e151ae69 100644 --- a/Makefile +++ b/Makefile @@ -61,8 +61,8 @@ format: .PHONY: rust-lint rust-lint: $(T)/rust-lint -$(T)/rust-lint: - cd $(RUST_DIR) && pnpm run lint +$(T)/rust-lint: $(RUSTY_STUFF) + pnpm --filter='native-utils' run lint touch $@