resetCacheLogs now bash script. Fix typo
authorBenjamin Auder <benjamin.a@mailoo.org>
Thu, 5 Feb 2015 11:01:26 +0000 (12:01 +0100)
committerBenjamin Auder <benjamin.a@mailoo.org>
Thu, 5 Feb 2015 11:01:26 +0000 (12:01 +0100)
README
resetCacheLogs.php [deleted file]
resetCacheLogs.sh [new file with mode: 0644]

diff --git a/README b/README
index faa8be4..2fb75fa 100644 (file)
--- 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 (file)
index b72cb18..0000000
+++ /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 (file)
index 0000000..101abf2
--- /dev/null
@@ -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}