Move scripts into a proper directory

This commit is contained in:
Solene Rapenne 2021-09-29 18:47:42 +02:00
parent a45165d6d3
commit e34a99a4da
4 changed files with 5 additions and 5 deletions

View File

@ -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