Commit 24d01984e1ecff6099feb15eaa006713ba7f3a0e
1 parent
14b07e79
Revert "Ensure 755 mode on redirection pages"
This reverts commit 00ca549fb7c977c91560ac4e2b14557a88ac83f5.
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
Makefile
... | ... | @@ -2,7 +2,7 @@ all: redirs |
2 | 2 | cd img; make |
3 | 3 | |
4 | 4 | redirs: |
5 | - for i in $$(cd pages; echo *.php); do echo "<?php require('index.php') // AUTOGEN ?>" > $$i; chmod 755 $$i; done | |
5 | + for i in $$(cd pages; echo *.php); do echo "<?php require('index.php') // AUTOGEN ?>" > $$i; done | |
6 | 6 | |
7 | 7 | clean: |
8 | 8 | cd img; make clean | ... | ... |