restored old method appendNotes
This commit is contained in:
parent
84100a10be
commit
15a482bd26
|
@ -183,12 +183,16 @@ def printReport(report) {
|
||||||
text += "\n"
|
text += "\n"
|
||||||
}
|
}
|
||||||
println text
|
println text
|
||||||
sh("""
|
appendNotes(text)
|
||||||
printf "%s" $text > $WALKER_NOTES
|
|
||||||
""")
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
def appendNotes(report) {
|
||||||
|
sh("""
|
||||||
|
echo -e "${report}" > $WALKER_NOTES
|
||||||
|
""")
|
||||||
|
}
|
||||||
|
|
||||||
// print the final report
|
// print the final report
|
||||||
def saveReport(report) {
|
def saveReport(report) {
|
||||||
def text = ''
|
def text = ''
|
||||||
|
|
Loading…
Reference in New Issue