Skip to content

Commit

Permalink
Make the first build set "make linktypes.xml".
Browse files Browse the repository at this point in the history
linktypes.xml has to be built before we build anything else;
unfortunately, there doesn't seem to be a way to do that in our
Makefile, given the way lib/main.mk works.
  • Loading branch information
guyharris committed Nov 24, 2024
1 parent 20456e4 commit f13225f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ jobs:
# Build txt and html versions of drafts
- run:
name: "Build Drafts"
command: "make 'CLONE_ARGS=--reference ~/git-reference'"
command: |
make linktypes.xml
make 'CLONE_ARGS=--reference ~/git-reference'
# Update editor's copy on gh-pages
- run:
Expand Down

0 comments on commit f13225f

Please sign in to comment.