From 0aed4eb233362c6040a5e1dced720e6db346473d Mon Sep 17 00:00:00 2001 From: Marc Mattmueller Date: Thu, 20 May 2021 08:05:55 +0200 Subject: [PATCH] jenkins: fixed bad subtitution in bootloader build and archive BugzID: 72761 Signed-off-by: Marc Mattmueller --- Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index e250567..c5c9688 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -205,10 +205,10 @@ def buildAndArchive() { else if (params.IMAGE_TYPE == 'bootloader') { sh "bash -c '. ./env.common && bitbake virtual/bootloader'" dir ('tmp/build-output') { - sh 'cp ${build_deploy}/*u-boot-${params.MACHINE}*.img . || true' - sh 'cp ${build_deploy}/*u-boot-${params.MACHINE}*.xmodem.bin . || true' - sh 'cp ${build_deploy}/imx-boot . || true' - sh 'cp ${build_deploy}/imx-boot.sd . || true' + sh "cp ${build_deploy}/*u-boot-${params.MACHINE}*.img . || true" + sh "cp ${build_deploy}/*u-boot-${params.MACHINE}*.xmodem.bin . || true" + sh "cp ${build_deploy}/imx-boot . || true" + sh "cp ${build_deploy}/imx-boot.sd . || true" } } else if (params.IMAGE_TYPE == 'vcu') {