fix lists in readme
[mixstore.git] / resetCacheLogs.sh
CommitLineData
6b3f9b32
BA
1#!/bin/sh
2#Clean cache and logs
3
4if [ -d app/cache ]; then
5 rm -rf app/cache/*
6fi
7if [ -d app/logs ]; then
8 rm -rf app/logs/*
9fi
10chmod 777 app/{cache,logs}