Commit ad4baad26f4f6378059888f490ae42ca2a245a01
1 parent
f96d2ab6
Exists in
master
and in
1 other branch
eviter sudo avec docker et nouveaux fichiers a ignorer
Showing
2 changed files
with
10 additions
and
1 deletions
Show diff stats
.gitignore
... | ... | @@ -6,6 +6,13 @@ |
6 | 6 | # ELEMENTS FOURNIS AVEC L'INSTALLATION D'UNE APP CAKEPHP : |
7 | 7 | # ############################### |
8 | 8 | |
9 | +# Docker | |
10 | +######### | |
11 | +.bash_history | |
12 | +.bashrc | |
13 | +.composer | |
14 | +.viminfo | |
15 | + | |
9 | 16 | # CakePHP specific files # |
10 | 17 | ########################## |
11 | 18 | /config/app.php | ... | ... |
VERSION
... | ... | @@ -67,7 +67,9 @@ echo |
67 | 67 | # Au cas où, on remet en accès pour tous les repertoires tmp et logs (pour que Apache puisse toujours écrire dedans) : |
68 | 68 | ##chmod -R 777 ./tmp/ |
69 | 69 | # - tmp/cache : obligé d'utiliser sudo a cause des fichiers créés par le serveur web (appartiennent à _www sur Mac) |
70 | -sudo chmod -R 777 ./tmp/cache/ | |
70 | +SUDO='' | |
71 | +which sudo > /dev/null && SUDO=sudo | |
72 | +$SUDO chmod -R 777 ./tmp/cache/ | |
71 | 73 | chmod -R 777 ./logs/ |
72 | 74 | |
73 | 75 | # On en profite pour nettoyer le cache, ca peut pas faire de mal | ... | ... |