From ef1b5561cadaa5088fc44c8e8a6b716604a52718 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Wed, 5 Jul 2017 13:30:16 -0400 Subject: Update Jenkinsfile --- Jenkinsfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index f8a8441..fcb1e0c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -9,8 +9,10 @@ pipeline { stages { stage('Bootstrap') { steps { - cinst = new CondaInstaller("${WORKSPACE}/tmp") - cinst.install() + script { + cinst = new CondaInstaller("${WORKSPACE}/tmp") + cinst.install() + } } } stage('Build') { -- cgit