From: Benjamin Auder <benjamin.a@mailoo.org> Date: Thu, 5 Feb 2015 11:01:26 +0000 (+0100) Subject: resetCacheLogs now bash script. Fix typo X-Git-Url: https://git.auder.net/%7B%7B%20asset%28%27mixstore/images/css/doc/img/DESCRIPTION?a=commitdiff_plain;h=6b3f9b327969c37f981a49fa0209f133f8696bc7;p=mixstore.git resetCacheLogs now bash script. Fix typo --- diff --git a/README b/README index faa8be4..2fb75fa 100644 --- a/README +++ b/README @@ -5,7 +5,7 @@ mixstore utilise Symfony2 ; organisation des répertoires : vendor/: Les bibliothèques tierces, web/: Le répertoire Web racine. -Le répertoire Web racine est l'endroit ou se situent tous les fichiers statiques +Le répertoire web racine est l'endroit ou se situent tous les fichiers statiques et publics comme les images, les feuilles de styles et les fichiers javascript. C'est aussi le dossier contenant le point d'entrée web/app.php diff --git a/resetCacheLogs.php b/resetCacheLogs.php deleted file mode 100644 index b72cb18..0000000 --- a/resetCacheLogs.php +++ /dev/null @@ -1,12 +0,0 @@ -<?php - -shell_exec -('bash -c " - if [ -d app/cache ]; then - rm -rf app/cache/* - fi - if [ -d app/logs ]; then - rm -rf app/logs/* - fi - chmod 777 app/{cache,logs} -" '); diff --git a/resetCacheLogs.sh b/resetCacheLogs.sh new file mode 100644 index 0000000..101abf2 --- /dev/null +++ b/resetCacheLogs.sh @@ -0,0 +1,10 @@ +#!/bin/sh +#Clean cache and logs + +if [ -d app/cache ]; then + rm -rf app/cache/* +fi +if [ -d app/logs ]; then + rm -rf app/logs/* +fi +chmod 777 app/{cache,logs}