We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc673ff commit 3a2b380Copy full SHA for 3a2b380
1 file changed
.mise/tasks/update_benchmarks.py
@@ -74,7 +74,7 @@ def run_cmd(cmd: List[str], cwd: Optional[str] = None) -> str:
74
75
def build_benchmarks(mvnw: str, module: str) -> None:
76
print(f"Building Maven module '{module}' using {mvnw} (this may take a while)...")
77
- cmd = [mvnw, "-pl", module, "-am", "-DskipTests", "package"]
+ cmd = [mvnw, "-pl", module, "-am", "-DskipTests", "clean", "package"]
78
run_cmd(cmd)
79
print("Build completed.")
80
0 commit comments