string interpolation

master
SLW\ARNAUA 2023-06-05 11:56:05 +02:00
parent 55d953f2d6
commit 842fff0ff7
1 changed files with 3 additions and 3 deletions

6
Jenkinsfile vendored
View File

@ -3,7 +3,7 @@ def exportRetryCount = 0
def checkRetryCount = 0
def checkRetryCountSec = 0
def file = "terraform-provider-dynatrace_1.31.0_linux_amd64.zip"
def link = "https://github.com/dynatrace-oss/terraform-provider-dynatrace/releases/download/v1.30.1/${file}"
def link = "https://github.com/dynatrace-oss/terraform-provider-dynatrace/releases/download/v1.30.1/terraform-provider-dynatrace_1.31.0_linux_amd64.zip"
pipeline {
@ -76,8 +76,8 @@ pipeline {
}
sh'''
pip3 install --user -r requirements.txt
wget "${provider}"
python3 unzip.py "${link}"
wget ${provider}
python3 unzip.py ${link}
ls -la
'''
}