refactor(jenkinsfile): fix syntax

Signed-off-by: zontreck <tarapiccari@gmail.com>
This commit is contained in:
zontreck 2024-10-05 22:36:00 -07:00
parent ee0301a1cb
commit 732259e6f9

8
Jenkinsfile vendored
View file

@ -16,7 +16,8 @@ pipeline {
}
steps {
script '''
script {
sh '''
#!/bin/bash
git clean -xfd
@ -24,6 +25,7 @@ pipeline {
'''
}
}
}
stage("Build ISO") {
agent {
@ -31,7 +33,8 @@ pipeline {
}
steps {
script '''
script {
sh '''
#!/bin/bash
mkarchiso -v -w work -o out server
@ -40,3 +43,4 @@ pipeline {
}
}
}
}