Add support for custom favicon in ER

Fixes #340
This commit is contained in:
Joseph Schorr 2015-08-10 13:39:39 -04:00
parent 562bdc6a76
commit 5bdd7ba990
2 changed files with 6 additions and 1 deletions

11
conf/init/copy_config_files.sh Executable file
View file

@ -0,0 +1,11 @@
#! /bin/sh
if [ -e /conf/stack/robots.txt ]
then
cp /conf/stack/robots.txt /static/robots.txt
fi
if [ -e /conf/stack/favicon.ico ]
then
cp /conf/stack/favicon.ico /static/favicon.ico
fi