Skip to content

Commit

Permalink
Add missing pic dependencies
Browse files Browse the repository at this point in the history
The pictures inside sub-directories were not tracked as dependencies.
  • Loading branch information
cedounet committed Oct 9, 2023
1 parent 3e7815f commit 8efb48f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions book/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ images += $(wildcard images/*.jpg)
images += $(wildcard images/*.png)
images += $(wildcard images/*/*.png)
images += $(foreach directory, $(chapters), $(wildcard $(directory)/*.jpg))
images += $(foreach directory, $(chapters), $(wildcard $(directory)/*/*.jpg))
images += $(foreach directory, $(chapters), $(wildcard $(directory)/*.png))
images += $(foreach directory, $(chapters), $(wildcard $(directory)/*/*.png))

# Black and White ebook, we will just re-zip directory after converting the
# images to lower resolution and greyscale
Expand Down

0 comments on commit 8efb48f

Please sign in to comment.