Skip to content
Snippets Groups Projects
Commit fa49bc15 authored by Dean Camera's avatar Dean Camera
Browse files

Update maintenance scripts to abort if the check-release target fails to complete.

parent ceed4e68
No related branches found
No related tags found
No related merge requests found
......@@ -11,7 +11,7 @@
LUFA_ROOT = ../
upgrade-doxygen:
@echo Updating Doxygen.conf files...
@echo Upgrading Doxygen.conf files...
@for doxygen_conf in `find $(LUFA_ROOT) -name Doxygen.conf`; do \
doxygen -u $$doxygen_conf; \
done;
......@@ -21,8 +21,10 @@ check-release:
@echo Checking for release suitability...
@if ( grep "XXXXXX" $(LUFA_ROOT)/LUFA/DoxygenPages/*.txt > /dev/null ;); then \
echo " ERROR: Doxygen documentation has not been updated for release!"; \
exit 1; \
fi;
@if ( grep "000000" $(LUFA_ROOT)/LUFA/Version.h > /dev/null ;); then \
echo " ERROR: Version header has not been updated for release!"; \
exit 1; \
fi;
@echo Done.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment