mirror of
https://git.tt-rss.org/fox/ttrss-docker-compose
synced 2025-06-11 04:09:52 +02:00
don't try to update base tt-rss source when updating plugins.local
This commit is contained in:
parent
28f740a2a0
commit
6f95076731
2 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
FROM alpine:3.12
|
||||
FROM alpine:3.14
|
||||
EXPOSE 9000/tcp
|
||||
|
||||
ENV SCRIPT_ROOT=/opt/tt-rss
|
||||
|
|
|
@ -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 && \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue