Skip to content
Snippets Groups Projects
Commit 5ce567ea authored by Mike Marchetti's avatar Mike Marchetti
Browse files

fix when changelog not available


Change-Id: I0c119052a662ff67371c6c430fbd9a7753852cc7
Signed-off-by: default avatarMike Marchetti <mmarchetti@sandvine.com>
parent 3a0fc42d
No related branches found
No related tags found
No related merge requests found
......@@ -133,7 +133,7 @@ node("${params.NODE}") {
// merge the change logs
sh """
rm -f changelog/osm-changelog.html
[ -d changelog ] && for mdgchange in \$(ls changelog); do cat changelog/\$mdgchange >> changelog/osm-changelog.html; done
[ ! -d changelog ] || for mdgchange in \$(ls changelog); do cat changelog/\$mdgchange >> changelog/osm-changelog.html; done
"""
}
// start an apache server to serve up the images
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment