diff options
| author | Greg <supahgreg@users.noreply.github.com> | 2025-10-09 10:33:43 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-09 10:33:43 -0500 |
| commit | 587a9ccb2f896aa451b5b2e469352114c2302042 (patch) | |
| tree | b3e8488eab395b802bebfd4dff52f939abfbc757 | |
| parent | 2b5877435f8baf911038f7f21b35cfbe660d8b86 (diff) | |
| parent | 0046d98c7b5cdf57cd96d8e57da199e0b0b651fb (diff) | |
Merge pull request #25 from tt-rss/feature/migrate-dev-plugins-to-github
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="" ;; |