a169089b3d
Changes see: http://lucene.apache.org/solr/4_10_1/changes/Changes.html PR: 193290 Submitted by: Radim Kolar <hsn@sendmail.cz> Approved by: gaod@hychen.org (maintainer timeout)
7 lines
138 B
Bash
7 lines
138 B
Bash
#!/bin/sh
|
|
#
|
|
# Removes jetty war cache
|
|
#
|
|
if [ "$2" = "DEINSTALL" ]; then
|
|
rm -rf $PKG_PREFIX/share/examples/apache-solr/solr-webapp/*
|
|
fi
|