9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-19 15:09:18 +00:00

fix compile while missing the sentry auth token

This commit is contained in:
Julian Krings
2025-06-09 18:40:43 +02:00
parent eefbbab7ee
commit f9dac8a3a1
2 changed files with 2 additions and 2 deletions

View File

@@ -147,7 +147,7 @@ tasks {
group = "io.sentry" group = "io.sentry"
dependsOn("downloadCli") dependsOn("downloadCli")
doLast { doLast {
val authToken = project.property("sentry.auth.token") ?: System.getenv("SENTRY_AUTH_TOKEN") val authToken = project.findProperty("sentry.auth.token") ?: System.getenv("SENTRY_AUTH_TOKEN")
val org = "volmit-software" val org = "volmit-software"
val projectName = "iris" val projectName = "iris"
exec(cli, "releases", "new", "--auth-token", authToken, "-o", org, "-p", projectName, version) exec(cli, "releases", "new", "--auth-token", authToken, "-o", org, "-p", projectName, version)

View File

@@ -100,7 +100,7 @@ sentry {
org = "volmit-software" org = "volmit-software"
projectName = "iris" projectName = "iris"
authToken = property("sentry.auth.token") as String? ?: System.getenv("SENTRY_AUTH_TOKEN") authToken = findProperty("sentry.auth.token") as String? ?: System.getenv("SENTRY_AUTH_TOKEN")
} }
tasks { tasks {