Skip to content

Commit

Permalink
BIGTOP-2509. Path error in bigtop-packages/src/common/solr/tomcat-dep…
Browse files Browse the repository at this point in the history
…loyment.sh

Fix webapps/ path error

Set the correct path to the webapps/ folder.
  • Loading branch information
lucasa authored and rvs committed Mar 28, 2017
1 parent af762bd commit 1cdb5ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bigtop-packages/src/common/solr/tomcat-deployment.sh
Expand Up @@ -24,7 +24,7 @@ SOLR_HOME=${SOLR_HOME:-/usr/lib/solr}
rm -rf ${TOMCAT_DEPLOYMENT}
mkdir ${TOMCAT_DEPLOYMENT}
cp -r ${TOMCAT_CONF}/conf ${TOMCAT_DEPLOYMENT}
cp -r ${SOLR_HOME}/webapps ${TOMCAT_DEPLOYMENT}/webapps
cp -r ${SOLR_HOME}/server/webapps ${TOMCAT_DEPLOYMENT}/webapps
cp -r ${TOMCAT_CONF}/WEB-INF/* ${TOMCAT_DEPLOYMENT}/webapps/solr/WEB-INF/

if [ -n "${BIGTOP_CLASSPATH}" ] ; then
Expand Down

0 comments on commit 1cdb5ed

Please sign in to comment.