Update tar extraction command in Jenkinsfile

Changed the order of arguments in the tar extraction command to ensure correct file placement.
This commit is contained in:
2024-08-24 21:46:39 +02:00
parent 3a6bc59683
commit e1e852cece
+1 -1
View File
@@ -41,7 +41,7 @@ pipeline {
sh """
curl -fsSL -O "${HELM_DOWNLOAD_URL}";
mkdir -p "${env.WORKSPACE}/${WS_BIN}";
tar xfz -C "${env.WORKSPACE}/${WS_BIN}" *;
tar xfz * -C "${env.WORKSPACE}/${WS_BIN}";
ls -lah "${env.WORKSPACE}/${WS_BIN}/linux-amd64/helm";
"""
deleteDir()