diff options
author | Jakob Unterwurzacher | 2017-09-17 10:45:48 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2017-09-17 10:45:48 +0200 |
commit | bf6b1fe25f5537f40affb588ebb9613c69cee6bd (patch) | |
tree | ac7a9ddc0a84b7aabdac9007a452aaf905d7a631 /Makefile | |
parent | c360666adc9cb1d441dc273e9561254d9170b811 (diff) |
Add htaccess redirects and tests
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -1,7 +1,15 @@ all: git pull mkdocs build --clean 2>&1 | grep -v "Warning: Click detected the use of the unicode_literals" + 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 |