From 2db9f4e3f51d33c3622130bf0e57557c9126ba9b Mon Sep 17 00:00:00 2001 From: "neo.webmaster.2@gmail.com" Date: Wed, 4 Mar 2026 09:14:01 +0100 Subject: [PATCH] "Auto-commit via make git" --- Makefile.am | 2 +- src/bootstrap.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index 1f5f5ac..6d79a3e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -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 # =========================== diff --git a/src/bootstrap.py b/src/bootstrap.py index 467b863..dd7d08a 100644 --- a/src/bootstrap.py +++ b/src/bootstrap.py @@ -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)