@@ -685,9 +685,9 @@ info-registry: ## info on local registry (if any)
685685
686686# # INFO -------------------------------
687687
688- .PHONY : info info-images info-swarm info-tools
688+ .PHONY : info info-images info-swarm
689689info : # # displays setup information
690- # setup info:
690+ @echo setup info --------------------------------
691691 @echo ' Detected OS : $(IS_LINUX)$(IS_OSX)$(IS_WSL)$(IS_WSL2)$(IS_WIN)'
692692 @echo ' SWARM_STACK_NAME : ${SWARM_STACK_NAME}'
693693 @echo ' DOCKER_REGISTRY : $(DOCKER_REGISTRY)'
@@ -697,19 +697,23 @@ info: ## displays setup information
697697 @echo ' - ULR : ${VCS_URL}'
698698 @echo ' - REF : ${VCS_REF}'
699699 @echo ' - (STATUS)REF_CLIENT : (${VCS_STATUS_CLIENT}) ${VCS_REF_CLIENT}'
700- @echo ' DIRECTOR_API_VERSION : ${DIRECTOR_API_VERSION}'
701- @echo ' STORAGE_API_VERSION : ${STORAGE_API_VERSION}'
702- @echo ' DATCORE_ADAPTER_API_VERSION : ${DATCORE_ADAPTER_API_VERSION}'
703- @echo ' WEBSERVER_API_VERSION : ${WEBSERVER_API_VERSION}'
704- # dev tools version
705- @echo ' make : $(shell make --version 2>&1 | head -n 1)'
706- @echo ' jq : $(shell jq --version)'
700+ @make --silent info-tools
701+
702+
703+ .PHONY : show-tools
704+ info-tools : # # displays tools versions
705+ @echo dev-tools versions -------------------------
707706 @echo ' awk : $(shell awk -W version 2>&1 | head -n 1)'
708- @echo ' python : $(shell python3 --version)'
709- @echo ' node : $(shell node --version 2> /dev/null || echo ERROR nodejs missing)'
710707 @echo ' docker : $(shell docker --version)'
711708 @echo ' docker buildx : $(shell docker buildx version)'
712709 @echo ' docker compose: $(shell docker compose version)'
710+ @echo ' jq : $(shell jq --version)'
711+ @echo ' make : $(shell make --version 2>&1 | head -n 1)'
712+ @echo ' node : $(shell node --version 2> /dev/null || echo ERROR nodejs missing)'
713+ @echo ' python : $(shell python3 --version)'
714+ @echo ' uv : $(shell uv --version 2> /dev/null || echo ERROR uv missing)'
715+ @echo ' ubuntu : $(shell lsb_release --description --short 2> /dev/null | tail || echo ERROR Not an Ubuntu OS )'
716+
713717
714718
715719define show-meta
0 commit comments