step/upper
This commit is contained in:
parent
201ba91e00
commit
10941ad0d8
2 changed files with 4 additions and 4 deletions
|
@ -5,6 +5,6 @@ import importlib
|
|||
env = importlib.import_module("env")
|
||||
|
||||
try:
|
||||
step = int(env.SPCD_STEP)
|
||||
STEP = int(env.SPCD_STEP)
|
||||
except AttributeError:
|
||||
step = 1
|
||||
STEP = 1
|
||||
|
|
|
@ -57,7 +57,7 @@ def split() -> None:
|
|||
|
||||
def step(text: str) -> None:
|
||||
"""Increment the step number of the current build process."""
|
||||
shell.step += 1
|
||||
shell.STEP += 1
|
||||
log.info(env.SPCD_DOWN)
|
||||
log.info(f"{env.SPCD_VERT} {shell.step} {text}")
|
||||
log.info(f"{env.SPCD_VERT} {shell.STEP} {text}")
|
||||
log.info(env.SPCD___UP)
|
||||
|
|
Loading…
Reference in a new issue