Skip to content

Commit

Permalink
update make list to only show dirname
Browse files Browse the repository at this point in the history
  • Loading branch information
steven-terrana committed Aug 19, 2019
1 parent f431483 commit dc55788
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion jenkins-agent/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down
2 changes: 1 addition & 1 deletion jenkins/base/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down
2 changes: 1 addition & 1 deletion jenkins/kubernetes/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down
2 changes: 1 addition & 1 deletion jenkins/openshift/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down
2 changes: 1 addition & 1 deletion sonarqube/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down

0 comments on commit dc55788

Please sign in to comment.