This is an automated email from the ASF dual-hosted git repository. vladimirsitnikov pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/jmeter.git
commit 22349fd7dcb577afa60d492c211cc9cec8509afc Author: Vladimir Sitnikov <[email protected]> AuthorDate: Fri Nov 7 13:55:12 2025 +0300 chore: fix nodeSetup vs AutostyleTask buildscript dependency issue --- src/dist/build.gradle.kts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/dist/build.gradle.kts b/src/dist/build.gradle.kts index 26661caa01..8987916144 100644 --- a/src/dist/build.gradle.kts +++ b/src/dist/build.gradle.kts @@ -441,6 +441,10 @@ tasks.yarnSetup { mustRunAfter(tasks.withType<AutostyleTask>()) } +tasks.nodeSetup { + mustRunAfter(tasks.withType<AutostyleTask>()) +} + val yarn_install = tasks.named<YarnTask>("yarn_install") { workingDir = xdocs mustRunAfter(":rat")
