Skip to content

Commit

Permalink
Merge branch 'dev' into byebye-geodata
Browse files Browse the repository at this point in the history
  • Loading branch information
philippemilink authored Jan 21, 2023
2 parents 672936b + 1a70d23 commit 0b5cf28
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,10 @@ start-publication-watchdog: ## Start the publication watchdog
help: ## Show this help
@echo "Use 'make [command]' to run one of these commands:"
@echo ""
@fgrep --no-filename "##" ${MAKEFILE_LIST} | head -n '-1' | sed 's/\:.*\#/\: \#/g' | column -s ':#' -t -c 2
ifeq ($(shell uname), Darwin)
@fgrep --no-filename "##" ${MAKEFILE_LIST} | tail -r | tail -n +3 | tail -r | sed 's/\:.*\#/\: \#/g' | column -s ':#' -t -c 2 | sed 's/(null)//g'
else
@fgrep --no-filename "##" ${MAKEFILE_LIST} | head -n '-2' | sed 's/\:.*\#/\: \#/g' | column -s ':#' -t -c 2 # assume GNU tools
endif
@echo ""
@echo "Open this Makefile to see what each command does."

0 comments on commit 0b5cf28

Please sign in to comment.