ros2-docs/Makefile
2024-12-16 09:47:21 -05:00

12 lines
402 B
Makefile

BRANCH ?= main
update_and_build:
@git fetch
@if [ "`git rev-list HEAD...origin/$(BRANCH) --count`" -ne "0" ]; then \
echo "Updates found. Pulling changes and building..."; \
git pull; \
docker run --rm -it -v ${PWD}:/docs squidfunk/mkdocs-material build; \
else \
echo "No updates. Skipping build."; \
fi