commit 45ebf0f5425fa9f04027e83cca01399eaec9b6e1 (patch)
parent 32f0f7d8a81c223257446fbbe1f41665b553b9be
Author: Alex Karle <alex@alexkarle.com>
Date: Wed, 7 Jul 2021 09:31:59 -0400
make: Fix jam-index dependencies post name change
The change a couple commits ago from MM-DD-YY to YYYY-MM-DD meant that
$(SETS) was empty -> no rebuild of jam-index
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
@@ -3,7 +3,7 @@
# build [default] -- generates HTML in current dir
# clean -- deletes said HTML
HTML != echo index.html *.[1-9] | sed 's/\.[1-9]/.html/g'
-SETS != find jam-tuesday -name '[01][0-9]-*'
+SETS != find jam-tuesday -name '[0-9][0-9][0-9][0-9]-*'
JAMGEN = jam-tuesday/index.html jam-tuesday/greatest-hits
# Running with HIDE="" shows the full build command instead