feature/21176 #1
|
@ -183,7 +183,9 @@ def printReport(report) {
|
||||||
text += "\n"
|
text += "\n"
|
||||||
}
|
}
|
||||||
println text
|
println text
|
||||||
sh printf "%s" $text > $WALKER_NOTES
|
sh("""
|
||||||
|
printf "%s" $text > $WALKER_NOTES
|
||||||
|
""")
|
||||||
|
|
||||||
manuele.simi marked this conversation as resolved
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
You don't need the shebang here.
Are you referring to the bash shell?
I've used the bash shell otherwise the
echo -e
option doesn't work.Is there an easier way to do that?
echo
(without -e) works for sure without the shebang.But if it does work for you, leave like that. It's a detail.
Yes it works but without the "-e" option the backslashes are not escapes. The result is an unreadable file.