diff options
| author | supahgreg <supahgreg@users.noreply.github.com> | 2025-10-09 15:15:46 +0000 |
|---|---|---|
| committer | supahgreg <supahgreg@users.noreply.github.com> | 2025-10-09 15:15:46 +0000 |
| commit | 0046d98c7b5cdf57cd96d8e57da199e0b0b651fb (patch) | |
| tree | b3e8488eab395b802bebfd4dff52f939abfbc757 | |
| parent | 2b5877435f8baf911038f7f21b35cfbe660d8b86 (diff) | |
Also migrate 'official' plugins from 'dev.tt-rss.org' to their GitHub equivalent.
| -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="" ;; |