From dc5578809004012922ef9b5c69f1c9d98db0477a Mon Sep 17 00:00:00 2001 From: steven-terrana Date: Mon, 19 Aug 2019 15:26:35 -0400 Subject: [PATCH] update make list to only show dirname --- jenkins-agent/Makefile | 2 +- jenkins/base/Makefile | 2 +- jenkins/kubernetes/Makefile | 2 +- jenkins/openshift/Makefile | 2 +- sonarqube/Makefile | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/jenkins-agent/Makefile b/jenkins-agent/Makefile index ad63210..fab8490 100644 --- a/jenkins-agent/Makefile +++ b/jenkins-agent/Makefile @@ -26,7 +26,7 @@ push: ## builds and publishes container image docker push $(TAG) info: - @echo "$(TAG) -> $$(git ls-files --full-name Makefile)" + @echo "$(TAG) -> $$(dirname $$(git ls-files --full-name Makefile))" # Catch-all target: route all unknown targets to Sphinx using the new # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). diff --git a/jenkins/base/Makefile b/jenkins/base/Makefile index a4c9fc7..089dd27 100644 --- a/jenkins/base/Makefile +++ b/jenkins/base/Makefile @@ -26,7 +26,7 @@ push: ## builds and publishes container image docker push $(TAG) info: - @echo "$(TAG) -> $$(git ls-files --full-name Makefile)" + @echo "$(TAG) -> $$(dirname $$(git ls-files --full-name Makefile))" # Catch-all target: route all unknown targets to Sphinx using the new # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). diff --git a/jenkins/kubernetes/Makefile b/jenkins/kubernetes/Makefile index ca03386..a9af515 100644 --- a/jenkins/kubernetes/Makefile +++ b/jenkins/kubernetes/Makefile @@ -26,7 +26,7 @@ push: ## builds and publishes container image docker push $(TAG) info: - @echo "$(TAG) -> $$(git ls-files --full-name Makefile)" + @echo "$(TAG) -> $$(dirname $$(git ls-files --full-name Makefile))" # Catch-all target: route all unknown targets to Sphinx using the new # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). diff --git a/jenkins/openshift/Makefile b/jenkins/openshift/Makefile index 29b8c27..e3a6941 100644 --- a/jenkins/openshift/Makefile +++ b/jenkins/openshift/Makefile @@ -26,7 +26,7 @@ push: ## builds and publishes container image docker push $(TAG) info: - @echo "$(TAG) -> $$(git ls-files --full-name Makefile)" + @echo "$(TAG) -> $$(dirname $$(git ls-files --full-name Makefile))" # Catch-all target: route all unknown targets to Sphinx using the new # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). diff --git a/sonarqube/Makefile b/sonarqube/Makefile index 4964008..04727d6 100644 --- a/sonarqube/Makefile +++ b/sonarqube/Makefile @@ -26,7 +26,7 @@ push: ## builds and publishes container image docker push $(TAG) info: - @echo "$(TAG) -> $$(git ls-files --full-name Makefile)" + @echo "$(TAG) -> $$(dirname $$(git ls-files --full-name Makefile))" # Catch-all target: route all unknown targets to Sphinx using the new # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).