From f0e9bbe4e0de9e4588e6cfb91522e260b26ac93d Mon Sep 17 00:00:00 2001 From: Martin Winkler Date: Fri, 31 Dec 2021 17:41:48 +0100 Subject: [PATCH] On upgrade, tansfer also a custom landing page --- seqs/friendica.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/seqs/friendica.sh b/seqs/friendica.sh index 082a9a5..b314645 100755 --- a/seqs/friendica.sh +++ b/seqs/friendica.sh @@ -145,6 +145,10 @@ step_22() { if [ -f "$tempBu/config/addon.config.php" ]; then exe cp -ar "$tempBu/config/addon.config.php" "$FR_LOC/config/" fi + # Custom landing page + if [ -f "$tempBu/home.html" ]; then + exe cp -ar "$tempBu/home".* "$FR_LOC/" + fi echo " [I] Don't forget to \"clean\" if everything is working as expected" }