From c40a5373afd13c013a622d88e848133167b38e8e Mon Sep 17 00:00:00 2001 From: Solene Rapenne Date: Thu, 30 Sep 2021 22:04:59 +0200 Subject: [PATCH] Fix generation if more than one issue --- issues/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/issues/Makefile b/issues/Makefile index a2531fc..792fa91 100644 --- a/issues/Makefile +++ b/issues/Makefile @@ -1,7 +1,7 @@ TEMPDIR=/tmp/openbsd-webzine/ generate-site: clean - ls | grep issue- | sort -n | xargs tools/make_issue.sh + ls | grep issue- | sort -n | xargs -n 1 tools/make_issue.sh tools/make_issue.sh _index ../public/index.html cp -fr _static/* ../public/ tools/sitemap.sh webzine.puffy.cafe ../public/ > ../public/sitemap.xml @@ -21,7 +21,7 @@ test: # only difference with generate-site is make_issue.sh -t testsite: clean - ls | grep issue- | sort -n | xargs tools/make_issue.sh -t + ls | grep issue- | sort -n | xargs -n 1 tools/make_issue.sh -t tools/make_issue.sh _index ../public/index.html cp -fr _static/* ../public/ tools/sitemap.sh webzine.puffy.cafe ../public/ > ../public/sitemap.xml