ci: fix missing bracket for timeout

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2023-10-24 18:50:59 +02:00
parent 814f8f1470
commit 7c02011373
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ pipeline {
}
stage('Unpack') {
steps { timeout(5) script {
steps { timeout(5) { script {
sh "tar -zxvf '${utils.findFile('tmp/pkg/*tar.gz')}' -C './tmp'"
env.APP_DIR = utils.findFile('tmp/*.AppImage')
} } }