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)