We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b534b2b commit e6e7422Copy full SHA for e6e7422
2 files changed
build.gradle.kts
@@ -116,9 +116,9 @@ nmcpAggregation {
116
}
117
118
dependencies {
119
- if (System.getProperty("LUAU_PUBLISH_ROOT") != null)
+ if (System.getenv("LUAU_PUBLISH_ROOT") != null)
120
nmcpAggregation(rootProject)
121
- if (System.getProperty("LUAU_PUBLISH_NATIVES") != null)
+ if (System.getenv("LUAU_PUBLISH_NATIVES") != null)
122
nmcpAggregation(project(":native"))
123
124
gradle/wrapper/gradle-wrapper.properties
@@ -1,5 +1,5 @@
1
distributionBase=GRADLE_USER_HOME
2
distributionPath=wrapper/dists
3
-distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.1-bin.zip
+distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip
4
zipStoreBase=GRADLE_USER_HOME
5
zipStorePath=wrapper/dists
0 commit comments