From b0999e09f6e4ee7ede99ad5577c4a68972aafe00 Mon Sep 17 00:00:00 2001 From: Steve Vaughan Date: Tue, 19 Mar 2024 12:50:57 -0400 Subject: [PATCH] build: Avoid confusion by using profile with clean The logs included spark and scala versions that didn't match the specified profile, which could lead to confusion. This change update includes the profile to ensure consistency. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ca5d7564a3..f20687cdae 100644 --- a/Makefile +++ b/Makefile @@ -33,7 +33,7 @@ test-jvm: core test: test-rust test-jvm clean: cd core && cargo clean - ./mvnw clean + ./mvnw clean $(PROFILES) rm -rf .dist bench: cd core && RUSTFLAGS="-Ctarget-cpu=native" cargo bench $(filter-out $@,$(MAKECMDGOALS))