diff options
| author | supahgreg <supahgreg@users.noreply.github.com> | 2025-10-03 22:03:43 +0000 |
|---|---|---|
| committer | supahgreg <supahgreg@users.noreply.github.com> | 2025-10-03 22:03:52 +0000 |
| commit | d7a91de1406450b4a0abddd21aac811102548730 (patch) | |
| tree | 156aeb82cb77c9706c8fd6db1156bffbda8b9be1 /.docker/app/startup.sh | |
| parent | 5e99eb41ecdf55e5482b4823b009f3cfdac6ec22 (diff) | |
Initial attempt to support both 'main' and 'master' branches.
Diffstat (limited to '.docker/app/startup.sh')
| -rw-r--r-- | .docker/app/startup.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.docker/app/startup.sh b/.docker/app/startup.sh index 1174e8fae..fd0569e21 100644 --- a/.docker/app/startup.sh +++ b/.docker/app/startup.sh @@ -86,7 +86,7 @@ if [ -z "$TTRSS_NO_STARTUP_PLUGIN_UPDATES" ]; then cd $PLUGIN && \ sudo -u app git config core.filemode false && \ sudo -u app git config pull.rebase false && \ - sudo -u app git pull origin master || echo warning: attempt to update plugin $PLUGIN failed. + sudo -u app git pull origin main || sudo -u app git pull origin master || echo warning: attempt to update plugin $PLUGIN failed. fi done else |