projects
/
mixstore.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
101abf2c4f0b700cdc2422e6a3be0c1f3b7ab7b5
[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
}