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