From 9bc26437f71defe8c9c9cf5f1b6a3f78e4dfcde1 Mon Sep 17 00:00:00 2001 From: nhyatt Date: Fri, 12 Apr 2024 07:09:31 -0500 Subject: [PATCH] moves if --- notify-bitwarden.jenkins | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/notify-bitwarden.jenkins b/notify-bitwarden.jenkins index 9373797..03974be 100644 --- a/notify-bitwarden.jenkins +++ b/notify-bitwarden.jenkins @@ -98,9 +98,9 @@ pipeline { stage ("Send Mail") { steps { - if (bitwardenInstalled != bitwardenLatestServer || bitwardenInstalled != bitwardenLatestWeb) { script { - mailBody = """Dear Bitwarden Admin, + if (bitwardenInstalled != bitwardenLatestServer || bitwardenInstalled != bitwardenLatestWeb) { + mailBody = """Dear Bitwarden Admin, A new version of bitwarden was released: Server: v${bitwardenLatestServer} Web: v${bitwardenLatestWeb} @@ -119,17 +119,17 @@ Docker Containers web: https://hub.docker.com/r/bitwarden/web/tags """ - echo mailBody - emailext( - body: mailBody, - mimeType: 'text/plain', - replyTo: '${DEFAULT_REPLYTO}', - subject: '${DEFAULT_SUBJECT}', - to: "nhyatt@smoothnet.org", - ) + echo mailBody + emailext( + body: mailBody, + mimeType: 'text/plain', + replyTo: '${DEFAULT_REPLYTO}', + subject: '${DEFAULT_SUBJECT}', + to: "nhyatt@smoothnet.org", + ) + } else { + println "Bitwarden is up to date!" } - } else { - println "Bitwarden is up to date!" } } }