This commit is contained in:
Jim Nicholson 2024-02-07 04:31:27 -08:00
parent a3bf854bb8
commit 729f455ecc

View File

@ -2,7 +2,7 @@ void call(String stepName) {
stepCorner = '+'
stepBanner = "| $stepName |"
bannerWidth = stepBanner.length() - 2
banner = stepCorder + ('=' * bannerWidth) + stepCorner
banner = stepCorner + ('=' * bannerWidth) + stepCorner
echo "$banner\n$stepBanner\n$banner"
}