From 638d91f5f425bf401240f9d467c7121f155010a8 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Fri, 4 Nov 2022 16:19:31 +0100 Subject: [PATCH] Ignore framework-docs from main branch in nohttp check --- build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index c68003140ce..9b2c3af505c 100644 --- a/build.gradle +++ b/build.gradle @@ -415,7 +415,7 @@ configure(rootProject) { source.exclude "**/test-output/**" allowlistFile = project.file("src/nohttp/allowlist.lines") def rootPath = file(rootDir).toPath() - def projectDirs = allprojects.collect { it.projectDir } + "${rootDir}/buildSrc" + def projectDirs = allprojects.collect { it.projectDir } + "${rootDir}/buildSrc" + "${rootDir}/framework-docs" projectDirs.forEach { dir -> [ 'bin', 'build', 'out', '.settings' ] .collect { rootPath.relativize(new File(dir, it).toPath()) } @@ -439,4 +439,5 @@ configure(rootProject) { } } } + }