mirror of
https://github.com/ironfox-oss/IronFox.git
synced 2026-07-31 01:46:33 -04:00
Applies consistent formatting and naming to patches Signed-off-by: celenity <celenity@celenity.dev>
24 lines
911 B
Diff
24 lines
911 B
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: celenity <celenity@celenity.dev>
|
|
Date: Sun, 05 Jul 2026 20:19:20 +0000
|
|
Subject: [PATCH] Glean - Gradle project resolution
|
|
|
|
Prevents building and configuring unnecessary/unwanted example/sample libraries, and ensures that only necessary projects are configured at build-time.
|
|
|
|
Signed-off-by: celenity <celenity@celenity.dev>
|
|
---
|
|
diff --git a/settings.gradle b/settings.gradle
|
|
index 23a74d7e..2736fd17 100644
|
|
--- a/settings.gradle
|
|
+++ b/settings.gradle
|
|
@@ -38,7 +38,7 @@ def setupProject(name, projectProps) {
|
|
def yaml = new Yaml()
|
|
def buildconfig = yaml.load(new File(rootDir, '.buildconfig.yml').newInputStream())
|
|
buildconfig.projects.each { project ->
|
|
- setupProject(project.key, project.value)
|
|
+ if (!project.key.startsWith("glean-sample")) { setupProject(project.key, project.value) }
|
|
}
|
|
|
|
gradle.projectsLoaded { ->
|
|
--
|