From e54f01df473cda07ad045ca0807fb16dfcd5b561 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 19 Nov 2021 09:33:18 +0300 Subject: [PATCH] don't try to update base tt-rss source when updating plugins.local --- src/app/startup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/startup.sh b/src/app/startup.sh index 8138b61..166d711 100755 --- a/src/app/startup.sh +++ b/src/app/startup.sh @@ -49,7 +49,7 @@ done if [ -z "$TTRSS_NO_STARTUP_PLUGIN_UPDATES" ]; then echo updating all local plugins... - find $DST_DIR/plugins.local -type d -maxdepth 1 | while read PLUGIN; do + find $DST_DIR/plugins.local -mindepth 1 -maxdepth 1 -type d | while read PLUGIN; do echo updating $PLUGIN... cd $PLUGIN && \