From ba17197837ae0795375a6b2a860dbe9c02383de6 Mon Sep 17 00:00:00 2001 From: Michael Hansen Date: Wed, 4 May 2022 16:27:33 -0400 Subject: [PATCH] Bad sort --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 195e602..b87d8e4 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -67,13 +67,13 @@ pipeline { // Get individual tags env.MIMIC3_TAG_NAME = sh( returnStdout: true, - script: "git tag --contains --sort=-creatordate | head -n 1" + script: "git tag --contains | head -n 1" ).trim() dir('plugin-tts-mimic3') { env.PLUGIN_TAG_NAME = sh( returnStdout: true, - script: "git tag --contains --sort=-creatordate | head -n 1" + script: "git tag --contains | head -n 1" ).trim() } }