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 e7b0bf65ab - Show all commits

5
vars/printBanner.groovy Normal file
View File

@ -0,0 +1,5 @@
void printBanner(String anything) {
repetitions = anything.length() + 2
boxTop = "+${'='.repeat(repetitions)}+"
echo "${boxTop}\n| ${anything} |\n${boxTop}\n"
}