projects
/
mixstore.git
/ blame_incremental
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(non-incremental) |
history
|
HEAD
fix lists in readme
[mixstore.git]
/
resetCacheLogs.sh
This page requires JavaScript to run. Use
this page
instead.
... / ...
Commit
Line
Data
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}