- copy the packaged config.xml into src/conf
- revert back previous change where in build.xml we copy the config.xml from client as we don't want to always overwrite the config.xml everytime the dev runs ant. The dev may have a custom config.xml which gets overwritten with what's packaged
This commit is contained in:
parent
497a496ba7
commit
a514051c3e
@ -270,7 +270,7 @@
|
||||
<equals arg1="${BUILD_ENV}" arg2="DEV"/>
|
||||
<then>
|
||||
<echo message="Copying config.xml for development environment"/>
|
||||
<copy file="/var/www/bigbluebutton/client/conf/config.xml" todir="${OUTPUT_DIR}/conf" />
|
||||
<copy file="${BASE_DIR}/src/conf/config.xml" todir="${OUTPUT_DIR}/conf" />
|
||||
</then>
|
||||
<else>
|
||||
<echo message="Need to copy config.xml.template for production environment"/>
|
||||
|
@ -557,8 +557,8 @@ if [ $SETUPDEV ]; then
|
||||
/etc/nginx/sites-available/bigbluebutton
|
||||
sudo /etc/init.d/nginx restart
|
||||
|
||||
echo "# Copying /var/www/bigbluebutton/client/conf/config.xml to ${BBBCLIENTHOME}/bin/conf/config.xml"
|
||||
cp /var/www/bigbluebutton/client/conf/config.xml $BBBCLIENTHOME/bin/conf/config.xml
|
||||
echo "# Copying /var/www/bigbluebutton/client/conf/config.xml to ${BBBCLIENTHOME}/src/conf/config.xml"
|
||||
cp /var/www/bigbluebutton/client/conf/config.xml $BBBCLIENTHOME/src/conf/config.xml
|
||||
|
||||
cd $BBBCLIENTHOME
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user