mirror of https://github.com/apache/lucene.git
- Modified to clean dirs/files created by run.sh.
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150817 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b248127c1f
commit
bc40fa1994
|
@ -1,4 +1,13 @@
|
|||
#!/bin/sh
|
||||
rm -r logs
|
||||
rm -r cachingqueue
|
||||
|
||||
BASE_DIR=./runtime
|
||||
LOG_DIR=$BASE_DIR/logs
|
||||
CACHE_DIR=$BASE_DIR/cachingqueue
|
||||
SLEEP_TIME=2
|
||||
|
||||
echo Removing $LOG_DIR...
|
||||
sleep $SLEEP_TIME
|
||||
rm -r $LOG_DIR
|
||||
echo Removing $CACHE_DIR...
|
||||
sleep $SLEEP_TIME
|
||||
rm -r $CACHE_DIR
|
||||
|
|
Loading…
Reference in New Issue