shell/step
This commit is contained in:
parent
bfc4538dcf
commit
4bd86a8880
2 changed files with 8 additions and 3 deletions
|
@ -3,3 +3,8 @@
|
|||
import importlib
|
||||
|
||||
env = importlib.import_module("env")
|
||||
|
||||
try:
|
||||
step = int(env.SPCD_STEP)
|
||||
except AttributeError:
|
||||
step = 1
|
||||
|
|
|
@ -7,7 +7,7 @@ from urllib.parse import urlparse, urlunparse
|
|||
from rwx import fs
|
||||
from rwx.log import stream as log
|
||||
|
||||
from spcd.shell import env
|
||||
from spcd import env, shell
|
||||
|
||||
|
||||
def add_url_path(url: str, extra_path: str) -> str:
|
||||
|
@ -57,7 +57,7 @@ def split() -> None:
|
|||
|
||||
def step(text: str) -> None:
|
||||
"""Increment the step number of the current build process."""
|
||||
env.SPCD_STEP += 1
|
||||
shell.step += 1
|
||||
log.info(env.SPCD_DOWN)
|
||||
log.info(f"{env.SPCD_VERT} {env.SPCD_STEP} {text}")
|
||||
log.info(f"{env.SPCD_VERT} {shell.step} {text}")
|
||||
log.info(env.SPCD___UP)
|
||||
|
|
Loading…
Reference in a new issue