Commit 00ca549fb7c977c91560ac4e2b14557a88ac83f5

Authored by Geoffrey PREUD'HOMME
1 parent 12d9fe06

Ensure 755 mode on redirection pages

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; done
  5 + for i in $$(cd pages; echo *.php); do echo "<?php require('index.php') // AUTOGEN ?>" > $$i; chmod 755 $$i; done
6 6  
7 7 clean:
8 8 cd img; make clean
... ...