spcd_substep
This commit is contained in:
parent
96a35fdc8e
commit
8ab46c1d59
1 changed files with 12 additions and 1 deletions
13
spcd.sh
13
spcd.sh
|
@ -952,7 +952,18 @@ spcd_split() {
|
|||
spcd_step() {
|
||||
SPCD_STEP=$((SPCD_STEP + 1))
|
||||
SPCD_STEP_TEXT="${*}"
|
||||
spcd_banner "${SPCD_STEP}" "${SPCD_STEP_TEXT}"
|
||||
unset SPCD_SUBSTEP
|
||||
spcd_banner "${SPCD_STEP}" "${SPCD_VERT}" "${SPCD_STEP_TEXT}"
|
||||
}
|
||||
|
||||
spcd_substep() {
|
||||
SPCD_SUBSTEP=$((SPCD_SUBSTEP + 1))
|
||||
spcd_banner \
|
||||
"${SPCD_STEP}.${SPCD_SUBSTEP}" \
|
||||
"${SPCD_VERT}" \
|
||||
"${SPCD_STEP_TEXT}" \
|
||||
"${SPCD_VERT}" \
|
||||
"${*}"
|
||||
}
|
||||
|
||||
spcd_write() {
|
||||
|
|
Loading…
Reference in a new issue