fix sintax

This commit is contained in:
Roberto Cirillo 2022-04-22 15:42:12 +02:00
parent 3e68a8b432
commit a6876bf091
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -37,11 +37,11 @@ pipeline {
steps {
echo 'Cron build enabled. Deploy from system ongoing'
echo 'Components to deploy:'
cat ${DEPLOY_FILE}
cat "${DEPLOY_FILE}"
script {
def length="wc -l ${DEPLOY_FILE}"
for (int i = 0; i < length ; ++i) {
echo "Component $i+1: " < $DEPLOY_FILE
echo "Component $i+1: " < "${DEPLOY_FILE}"
}
}
}