Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: create and properly include exercises.zip by default #115

Merged
merged 1 commit into from
Feb 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@ check: check-tutorial check-archive
##############################################################################
# Tutorial document

tutorial: exercises mkdocs.yml $(shell find docs -type f)
tutorial: exercises docs/exercises.zip mkdocs.yml $(shell find docs -type f)
mkdocs build --strict

serve: exercises mkdocs.yml $(shell find docs -type f)
serve: exercises docs/exercises.zip mkdocs.yml $(shell find docs -type f)
mkdocs serve

##############################################################################
Expand Down
3 changes: 2 additions & 1 deletion docs/getting-started/tutorials/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ elaborate separation logic specifications of data structures.
## Source files

The source files for all the exercises and examples below can be downloaded
from [here](link:exercises.zip).
from [here](../../exercises.zip).
<!-- Note: `../../exercises.zip` is meant to be created via `make` -->

## Tutorials

Expand Down