moves if statement

This commit is contained in:
Hyatt 2024-04-12 07:03:17 -05:00
parent b40969d8fa
commit d1c42d5a35
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -96,9 +96,9 @@ pipeline {
}
}
if (bitwardenInstalled != bitwardenLatestServer || bitwardenInstalled != bitwardenLatestWeb) {
stage ("Send Mail") {
steps {
stage ("Send Mail") {
steps {
if (bitwardenInstalled != bitwardenLatestServer || bitwardenInstalled != bitwardenLatestWeb) {
script {
mailBody = """Dear Bitwarden Admin,
A new version of bitwarden was released:
@ -128,10 +128,10 @@ Docker Containers
to: "nhyatt@smoothnet.org",
)
}
} else {
println "Bitwarden is up to date!"
}
}
} else {
println "Bitwarden is up to date!"
}
}
}