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

@@ -100,7 +100,7 @@ sentry {
org = "volmit-software"
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 {