[java-parent-project] branch main updated: Alternate conditional variable syntax.
Codeberg
noreply at shibboleth.net
Fri May 15 16:27:59 UTC 2026
This is an automated email from the git hooks/post-receive script.
codeberg pushed a commit to branch main
in repository java-parent-project.
View the commit online:
https://codeberg.org/Shibboleth/java-parent-project/commit/0f3fe4cba4d1b665b76a40ed48765ad1d276db01
The following commit(s) were added to refs/heads/main by this push:
new 0f3fe4c Alternate conditional variable syntax.
0f3fe4c is described below
commit 0f3fe4cba4d1b665b76a40ed48765ad1d276db01
Author: Scott Cantor <scott at restingparrotsoftware.com>
AuthorDate: Fri May 15 12:27:46 2026 -0400
Alternate conditional variable syntax.
---
resources/jenkins/plugin-compatibility.jenkinsfile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/resources/jenkins/plugin-compatibility.jenkinsfile b/resources/jenkins/plugin-compatibility.jenkinsfile
index ca8b092..c387b4b 100644
--- a/resources/jenkins/plugin-compatibility.jenkinsfile
+++ b/resources/jenkins/plugin-compatibility.jenkinsfile
@@ -1,5 +1,5 @@
-def IDP_BASE = "${env.IDP_BASE == '' ? '5.0.0' : env.IDP_BASE}"
-def SHIBSHARED_BASE = "${env.SHIBSHARED_BASE == '' ? '9.0.0' : env.SHIBSHARED_BASE}"
+def IDP_BASE = "${!env.IDP_BASE ? '5.0.0' : env.IDP_BASE}"
+def SHIBSHARED_BASE = "${!env.SHIBSHARED_BASE ? '9.0.0' : env.SHIBSHARED_BASE}"
def IDP_CUR = "5.2.2"
def SHIBSHARED_CUR = "9.2.2"
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list