Skip to content
Snippets Groups Projects
Commit d00179c4 authored by Ralf Jung's avatar Ralf Jung
Browse files

git diff is going to be more helpful here I think

parent f707bc59
No related branches found
No related tags found
No related merge requests found
Pipeline #33213 passed
...@@ -12,4 +12,4 @@ $(EXERCISES): exercises/%.v: solutions/%.v gen-exercises.awk ...@@ -12,4 +12,4 @@ $(EXERCISES): exercises/%.v: solutions/%.v gen-exercises.awk
# CI make target # CI make target
ci: all ci: all
+@make -B exercises # force make (in case exercise files have been edited directly) +@make -B exercises # force make (in case exercise files have been edited directly)
if [ -n "$$(git status --porcelain)" ]; then echo 'ERROR: Exercise files are not up-to-date with solutions. `git status` after re-making them:'; git status; exit 1; fi if [ -n "$$(git status --porcelain)" ]; then echo 'ERROR: Exercise files are not up-to-date with solutions. `git diff` after re-making them:'; git diff; exit 1; fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment