projects
/
mixstore.git
/ blame
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(incremental) |
history
|
HEAD
fix lists in readme
[mixstore.git]
/
resetCacheLogs.sh
Commit
Line
Data
6b3f9b32
BA
1
#!/bin/sh
2
#Clean cache and logs
3
4
if [ -d app/cache ]; then
5
rm -rf app/cache/*
6
fi
7
if [ -d app/logs ]; then
8
rm -rf app/logs/*
9
fi
10
chmod 777 app/{cache,logs}