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).