"Auto-commit via make git"
Some checks are pending
Python Code Quality / lock_file (push) Waiting to run
Python Code Quality / linting (push) Blocked by required conditions
Python Code Quality / formatting (push) Blocked by required conditions
Python Code Quality / type_consistency (push) Blocked by required conditions
Python Code Quality / tests (push) Blocked by required conditions
Python Code Quality / build (push) Blocked by required conditions

This commit is contained in:
neo.webmaster.2@gmail.com 2026-03-04 09:14:01 +01:00
parent 10b016269d
commit 2db9f4e3f5
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ SUBDIRS = src
TOP_DIR = $(shell pwd)
DIST_DIR = $(TOP_DIR)/dist
BUILD_DIR = $(TOP_DIR)/build
GIT_VER = $(shell git describe --tags --always --dirty 2>/dev/null || echo "0.1-dev")
GIT_VER = $(shell git describe --tags --always --dirty=-dev 2>/dev/null || echo "0.1-dev")
SRC_TAR = $(DIST_DIR)/myhomelab-$(GIT_VER)-src.tar.gz
# ===========================

View File

@ -14,7 +14,7 @@ class Application(object):
self._hello()
def _hello(self):
print(f"Iniciando o {getattr(self, 'package', '')} {getattr(self, 'version', '')}...")
print(f"🚀 Iniciando o {getattr(self, 'package', '')} {getattr(self, 'version', '')}...")
def _print(self, msg: str):
print(f"[{getattr(self, 'package', '')}] {msg}", flush=True)