blob: af4eb282f10977c1074322097a95521b98f073df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
all:
git pull
LC_ALL=C.UTF-8 LANG=C.UTF-8 mkdocs build --clean
cp -af htaccess site/.htaccess
.PHONY: clean
clean:
rm -Rf site
.PHONY: test
test:
curl -sSf -o /dev/null https://nuetzlich.net/gocryptfs
# These should redirect to the new names
curl -sSf -o /dev/null https://nuetzlich.net/gocryptfs/security
curl -sSf -o /dev/null https://nuetzlich.net/gocryptfs/reverse_mode
|