Skip to content

Commit e6e7422

Browse files
committed
chore: gradle 8.14.2, check env not property
1 parent b534b2b commit e6e7422

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,9 @@ nmcpAggregation {
116116
}
117117

118118
dependencies {
119-
if (System.getProperty("LUAU_PUBLISH_ROOT") != null)
119+
if (System.getenv("LUAU_PUBLISH_ROOT") != null)
120120
nmcpAggregation(rootProject)
121-
if (System.getProperty("LUAU_PUBLISH_NATIVES") != null)
121+
if (System.getenv("LUAU_PUBLISH_NATIVES") != null)
122122
nmcpAggregation(project(":native"))
123123
}
124124

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)