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 40cc08c123 - Show all commits

View File

@ -1,8 +1,13 @@
void call(String stepName) { void call(String stepName) {
stepCorner = '+' stepCorner = '+'
stepBanner = "| $stepName |" stepBanner = "║ $stepName ║"
bannerWidth = stepBanner.length() - 2 bannerWidth = stepBanner.length() - 2
banner = stepCorner + ('=' * bannerWidth) + stepCorner // banner = stepCorner + ('=' * bannerWidth) + stepCorner
echo "$banner\n$stepBanner\n$banner" top = '╔' + ('═' * bannerWidth) + '╗'
bottom = '╚' + ('═' * bannerWidth) + '╝'
echo "$top\n$stepBanner\n$bottom"
} }
//