From 333f491493fd2ee86874dfd4fc2950e40b832bc2 Mon Sep 17 00:00:00 2001 From: Sandu Postaru Date: Tue, 12 Jan 2021 16:47:12 +0100 Subject: [PATCH] [releng] Update capella archive extension in Jenkinsfile Change-Id: I27ceebc821e0c03c1cd5a964a2a4f9b8eb3b6c91 Signed-off-by: Sandu Postaru --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 6d41e700..4b88372e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -57,9 +57,9 @@ pipeline { steps { script { def capellaURL = capella.getDownloadURL("${CAPELLA_BRANCH}", 'linux', '') - - sh "curl -k -o capella.zip ${capellaURL}" - sh "unzip -q capella.zip" + + sh "curl -k -o capella.tar.gz ${capellaURL}" + sh "tar xvzf capella.tar.gz" } }