diff options
Diffstat (limited to '.docker')
| -rw-r--r-- | .docker/app/startup.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.docker/app/startup.sh b/.docker/app/startup.sh index 64111dd19..425fca69c 100644 --- a/.docker/app/startup.sh +++ b/.docker/app/startup.sh @@ -96,6 +96,12 @@ if [ -z "$TTRSS_NO_STARTUP_PLUGIN_UPDATES" ]; then https://gitlab.tt-rss.org/tt-rss/plugins/ttrss-*.git) NEW_ORIGIN_URL="https://github.com/tt-rss/tt-rss-plugin-${ORIGIN_URL#'https://gitlab.tt-rss.org/tt-rss/plugins/ttrss-'}" ;; + https://dev.tt-rss.org/tt-rss/ttrss-*.git) + NEW_ORIGIN_URL="https://github.com/tt-rss/tt-rss-plugin-${ORIGIN_URL#'https://dev.tt-rss.org/tt-rss/ttrss-'}" + ;; + https://dev.tt-rss.org/tt-rss/plugins/ttrss-*.git) + NEW_ORIGIN_URL="https://github.com/tt-rss/tt-rss-plugin-${ORIGIN_URL#'https://dev.tt-rss.org/tt-rss/plugins/ttrss-'}" + ;; *) NEW_ORIGIN_URL="" ;; |