wowana.me
website source
commit e4a1bf40c31ccd1062a5e9e35fe475795ad999d2 parent 43348f024e5fbc0ff15045045bf846c4093a581d Author: opal hart <opal@wowana.me> Date: Wed, 5 Jun 2019 04:26:09 +0000 move scripts to their own directory clean up the base of the repo Diffstat:
M | Makefile | | | 4 | ++-- |
R | blog.sh -> scripts/blog.sh | | | 0 | |
R | feed.sh -> scripts/feed.sh | | | 0 | |
R | postproc.sh -> scripts/postproc.sh | | | 0 |
4 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile @@ -32,7 +32,7 @@ src/blog/index.part.xht: $(BLOGSRC) done ) | markdown > $@ out/%.xht: src/%.part.xht src/header.inc src/footer.inc - ./postproc.sh $< > $@ + ./scripts/postproc.sh $< > $@ out/blog/feed.atom: $(BLOGSRC:%.md=%.part.xht) - ./feed.sh $$(ls -1t $^) > $@ + ./scripts/feed.sh $$(ls -1t $^) > $@ diff --git a/blog.sh b/scripts/blog.sh diff --git a/feed.sh b/scripts/feed.sh diff --git a/postproc.sh b/scripts/postproc.sh