From 45ebf0f5425fa9f04027e83cca01399eaec9b6e1 Mon Sep 17 00:00:00 2001 From: Alex Karle Date: Wed, 7 Jul 2021 09:31:59 -0400 Subject: [PATCH] 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 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 134ae71..d655df1 100644 --- 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 -- libgit2 1.1.1