diff options
author | EuAndreh <eu@euandre.org> | 2025-05-05 11:30:44 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-05-05 11:30:44 -0300 |
commit | da75a78669a7c11038c7b44ea5f2eb4de88ca46d (patch) | |
tree | df938924b75a346c9ecd7eab3496f3a2e88822da | |
parent | Makefile: Only write the public key when we have it locally (diff) | |
download | euandre.org-da75a78669a7c11038c7b44ea5f2eb4de88ca46d.tar.gz euandre.org-da75a78669a7c11038c7b44ea5f2eb4de88ca46d.tar.xz |
Makefile: Fix missing test dependencies
Diffstat (limited to '')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -390,7 +390,7 @@ check-unit-updatedat: $(sources.updatedat-check) .SUFFIXES: .links-internal-check sources.links-internal-check = $(sources.adoc:.adoc=.links-internal-check) -$(sources.links-internal-check): $(sources.html) +$(sources.links-internal-check): $(sources.html) $(slides.pdf) grep -E '^(link|image):' $*.links | cut -d: -f2- | \ xargs -I% test -e $(*D)/% @@ -405,6 +405,7 @@ symlink-deps = \ $(feeds.xml) \ $(categories.xml) \ src/content/.well-known/security.txt \ + $(sources.media.torrent) \ check-unit-symlinks: src/all-symlinks.txt $(symlink-deps) find `cat src/all-symlinks.txt` | xargs -n1 test -e |