Revamp stages and restructure project #1

Merged
jim merged 32 commits from newstage into master 2024-02-08 02:22:21 +00:00
Showing only changes of commit 729f455ecc - Show all commits

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"
}