Skip to content

Commit

Permalink
midpoint-quick-pipeline: fix of missing sh block
Browse files Browse the repository at this point in the history
  • Loading branch information
virgo47 committed Jun 1, 2022
1 parent 563f294 commit 78d45c9
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions tools/jenkins/midpoint-quick-pipeline
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,12 @@ podTemplate(
node(POD_LABEL) {
try {
stage("checkout") {
if [ "${verbose}" -ge 1 ]
then
df -h
fi
sh """#!/bin/bash -ex
if [ "${verbose}" -ge 1 ]
then
df -h
fi
"""
git branch: params.BRANCH ?: 'master',
url: 'https://github.com/Evolveum/midpoint.git'
}
Expand Down

0 comments on commit 78d45c9

Please sign in to comment.