Skip to content

Commit

Permalink
Fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
abique committed Sep 17, 2024
1 parent 734da05 commit 3ebfde1
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions jenkins/linux-plugins.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,13 @@ pipeline {
timeout(time: 4, unit: 'HOURS')
}
steps {
if (CLEAN_BUILD) {
sh 'rm -rf builds'
}
if (REBUILD_VCPKG) {
sh 'rm -rf vcpkg/{installed,buildtree} ~/.cache/vcpkg'
script {
if (CLEAN_BUILD) {
sh 'rm -rf builds'
}
if (REBUILD_VCPKG) {
sh 'rm -rf vcpkg/{installed,buildtree} ~/.cache/vcpkg'
}
}
sh 'scripts/build-gui.sh'
}
Expand Down

0 comments on commit 3ebfde1

Please sign in to comment.