1
0
Fork 0
mirror of https://git.tt-rss.org/fox/ttrss-docker-compose synced 2025-06-08 13:09:53 +02:00

don't try to update base tt-rss source when updating plugins.local

This commit is contained in:
Andrew Dolgov 2021-11-19 09:31:07 +03:00
parent d9b96dc114
commit 283c221fff

View file

@ -52,7 +52,7 @@ else
if [ -z "$TTRSS_NO_STARTUP_PLUGIN_UPDATES" ]; then if [ -z "$TTRSS_NO_STARTUP_PLUGIN_UPDATES" ]; then
echo updating all local plugins... echo updating all local plugins...
find $DST_DIR/plugins.local -type d -maxdepth 1 | while read PLUGIN; do find $DST_DIR/plugins.local/ -maxdepth 1 -mindepth 1 -type d | while read PLUGIN; do
echo updating $PLUGIN... echo updating $PLUGIN...
cd $PLUGIN && \ cd $PLUGIN && \