commit e96bb6178a612ac32dedcb78b8222345df087ded from: Murilo Ijanc date: Thu Apr 9 17:52:17 2026 UTC fix clippy output leaking binary into project root commit - e6ba91a0d9d43230842fe71205d8ddc379db5e79 commit + e96bb6178a612ac32dedcb78b8222345df087ded blob - 9f878a656005bbfc4d0bfe78e21c7086bf3570df blob + 2c8ad3938d3b92d5c47b31fc5d3d26fc72a2ad67 --- Makefile +++ Makefile @@ -35,10 +35,11 @@ fmt-check: $(RUSTFMT) --edition 2024 --check $(MAIN) clippy: - ASP_VERSION=$(VERSION) $(CLIPPY) --edition 2024 \ + ASP_VERSION=$(VERSION) TMPDIR=/tmp $(CLIPPY) --edition 2024 \ --crate-type bin --crate-name asp \ -L $(BUILD) -l tls \ - -W clippy::all $(MAIN) + -W clippy::all -o /tmp/asp.clippy $(MAIN) + @rm -f /tmp/asp.clippy ci: fmt-check clippy $(BIN)