From 694983a7c10be9d3f4ce024a636143025a132207 Mon Sep 17 00:00:00 2001 From: x86dev Date: Sun, 16 Dec 2018 14:53:49 +0100 Subject: [PATCH] More path bugfixes. --- root/srv/setup-ttrss.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/root/srv/setup-ttrss.sh b/root/srv/setup-ttrss.sh index 8d95059..5e9bac4 100755 --- a/root/srv/setup-ttrss.sh +++ b/root/srv/setup-ttrss.sh @@ -52,10 +52,7 @@ setup_ttrss() fi TTRSS_PATH_THEMES=${TTRSS_PATH}/themes.local - mkdir -p ${TTRSS_PATH_THEMES} - TTRSS_PATH_PLUGINS=${TTRSS_PATH}/plugins.local - mkdir -p ${TTRSS_PATH_PLUGINS} if [ ! -d ${TTRSS_PATH} ]; then mkdir -p ${TTRSS_PATH} @@ -69,8 +66,12 @@ setup_ttrss() echo "Setup: Setting up Tiny Tiny RSS (latest revision) ..." git clone --depth=1 ${TTRSS_REPO_URL} ${TTRSS_PATH} fi + + mkdir -p ${TTRSS_PATH_PLUGINS} git clone --depth=1 https://github.com/sepich/tt-rss-mobilize.git ${TTRSS_PATH_PLUGINS}/mobilize git clone --depth=1 https://github.com/m42e/ttrss_plugin-feediron.git ${TTRSS_PATH_PLUGINS}/feediron + + mkdir -p ${TTRSS_PATH_THEMES} git clone --depth=1 https://github.com/levito/tt-rss-feedly-theme.git ${TTRSS_PATH_THEMES}/levito-feedly-git git clone --depth=1 https://github.com/Gravemind/tt-rss-feedlish-theme.git ${TTRSS_PATH_THEMES}/gravemind-feedly-git fi