From 6f9507673125d81a7bd214f9e93b5cdfb45c1bd3 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 19 Nov 2021 09:31:07 +0300 Subject: [PATCH] don't try to update base tt-rss source when updating plugins.local --- app/Dockerfile | 2 +- app/startup.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Dockerfile b/app/Dockerfile index 4f9d3fd..97d1383 100644 --- a/app/Dockerfile +++ b/app/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.12 +FROM alpine:3.14 EXPOSE 9000/tcp ENV SCRIPT_ROOT=/opt/tt-rss diff --git a/app/startup.sh b/app/startup.sh index cae025d..cd1706c 100755 --- a/app/startup.sh +++ b/app/startup.sh @@ -50,7 +50,7 @@ else 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/ -maxdepth 1 -mindepth 1 -type d | while read PLUGIN; do echo updating $PLUGIN... cd $PLUGIN && \