From e34a99a4da1587cbe715796c053b858ee4926d25 Mon Sep 17 00:00:00 2001 From: Solene Rapenne Date: Wed, 29 Sep 2021 18:47:42 +0200 Subject: [PATCH] Move scripts into a proper directory --- issues/Makefile | 10 +++++----- issues/{ => tools}/atom.sh | 0 issues/{ => tools}/make_issue.sh | 0 issues/{ => tools}/sitemap.sh | 0 4 files changed, 5 insertions(+), 5 deletions(-) rename issues/{ => tools}/atom.sh (100%) rename issues/{ => tools}/make_issue.sh (100%) rename issues/{ => tools}/sitemap.sh (100%) diff --git a/issues/Makefile b/issues/Makefile index f84a8c3..9614a7f 100644 --- a/issues/Makefile +++ b/issues/Makefile @@ -1,9 +1,9 @@ generate-site: - ls | grep issue- | sort -n | xargs ./make_issue.sh - ./make_issue.sh _index ../public/index.html - ./sitemap.sh webzine.puffy.cafe ../public/ > ../public/sitemap.xml + ls | grep issue- | sort -n | xargs tools/make_issue.sh + tools/make_issue.sh _index ../public/index.html + tools/sitemap.sh webzine.puffy.cafe ../public/ > ../public/sitemap.xml gzip -9 -c ../public/sitemap.xml > ../public/sitemap.gz - ./atom.sh webzine.puffy.cafe > ../public/atom.xml + tools/atom.sh webzine.puffy.cafe > ../public/atom.xml all: generate-site @@ -13,7 +13,7 @@ clean: rm ../dev/*html test: - ./make_issue.sh current /tmp/current-issue.html + tools/make_issue.sh current /tmp/current-issue.html xdg-open /tmp/current-issue.html testsite: generate-site diff --git a/issues/atom.sh b/issues/tools/atom.sh similarity index 100% rename from issues/atom.sh rename to issues/tools/atom.sh diff --git a/issues/make_issue.sh b/issues/tools/make_issue.sh similarity index 100% rename from issues/make_issue.sh rename to issues/tools/make_issue.sh diff --git a/issues/sitemap.sh b/issues/tools/sitemap.sh similarity index 100% rename from issues/sitemap.sh rename to issues/tools/sitemap.sh