projects
/
mixstore.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
fix markdown
[mixstore.git]
/
resetCacheLogs.sh
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
}