restored old method appendNotes

This commit is contained in:
Roberto Cirillo 2021-11-09 15:56:38 +01:00
parent 84100a10be
commit 15a482bd26
1 changed files with 7 additions and 3 deletions

10
Jenkinsfile vendored
View File

@ -183,12 +183,16 @@ def printReport(report) {
text += "\n"
}
println text
sh("""
printf "%s" $text > $WALKER_NOTES
""")
appendNotes(text)
}
def appendNotes(report) {
sh("""
echo -e "${report}" > $WALKER_NOTES
""")
}
// print the final report
def saveReport(report) {
def text = ''