mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-01 23:47:21 +00:00
fix compile while missing the sentry auth token
This commit is contained in:
parent
eefbbab7ee
commit
f9dac8a3a1
@ -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)
|
||||||
|
@ -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 {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user