wowana.me

website source


commit 4caf7813108224cf7c55d2f1948d419111be00ce
parent 2b80743b0f612dcb97ab2613fe4b84a146b7c5fa
Author: opal hart <opal@wowana.me>
Date:   Wed,  5 Jun 2019 01:28:18 +0000

add /out/alpine to .gitignore, modify Makefile

I handle alpine packages using just rsync; there is no reason to have it
under version control

Diffstat:
M.gitignore | 1+
MMakefile | 3++-
2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/.gitignore b/.gitignore @@ -1,3 +1,4 @@ +/out/alpine /out/files /out/paste /out/private diff --git a/Makefile b/Makefile @@ -16,7 +16,8 @@ clean: rm -f $(FINAL) upload: - rsync -prtuvz --delete out/ mimiga:www/wowana.me/ + rsync -Pprtuvz --delete out/ mimiga:www/wowana.me/ + rsync -Pprtuvz --delete /mnt/alpine/home/alpine/packages/ mimiga:www/wowana.me/alpine/ src/%.part.xht: src/%.md markdown < $< > $@