From e82a259ccd1db55766f415393dbdc9b2627a02e5 Mon Sep 17 00:00:00 2001 From: Timo Date: Fri, 24 May 2024 23:21:38 +0200 Subject: [PATCH] made Makefile more verbose --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 47d3e80..bfc589d 100644 --- a/Makefile +++ b/Makefile @@ -30,9 +30,9 @@ env: .PHONY = gitsync gitsync: - git --git-dir=$(ROOT_DIR)SWA-frontend/.git pull --quiet || git --git-dir=ROOT_DIR clone https://git.anxietyprime.de/SWA-Project/SWA-frontend.git --quiet - git --git-dir=$(ROOT_DIR)SWA-backend/.git pull --quiet || git --git-dir=ROOT_DIR clone https://git.anxietyprime.de/SWA-Project/SWA-backend.git --quiet - git --git-dir=$(ROOT_DIR)SWA-database/.git pull --quiet || git --git-dir=ROOT_DIR clone https://git.anxietyprime.de/SWA-Project/SWA-database.git --quiet + git --git-dir=$(ROOT_DIR)SWA-frontend/.git pull || git --git-dir=ROOT_DIR clone https://git.anxietyprime.de/SWA-Project/SWA-frontend.git + git --git-dir=$(ROOT_DIR)SWA-backend/.git pull || git --git-dir=ROOT_DIR clone https://git.anxietyprime.de/SWA-Project/SWA-backend.git + git --git-dir=$(ROOT_DIR)SWA-database/.git pull || git --git-dir=ROOT_DIR clone https://git.anxietyprime.de/SWA-Project/SWA-database.git @echo "done" .PHONY = build @@ -52,10 +52,10 @@ database: gitsync .PHONY = keycloak keycloak: - docker pull $(KEYCLOAK_BASE) --quiet + docker pull $(KEYCLOAK_BASE) @docker tag $(KEYCLOAK_BASE) $(DOCKER_REGISTRY)$(KEYCLOAK) - docker pull $(KEYCLOAK_DB_BASE) --quiet + docker pull $(KEYCLOAK_DB_BASE) @docker tag $(KEYCLOAK_DB_BASE) $(DOCKER_REGISTRY)$(KEYCLOAK_DB) .PHONY = clean