ros2-docs/Makefile

12 lines
402 B
Makefile
Raw Normal View History

2024-12-16 14:47:21 +00:00
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