Merge remote-tracking branch 'upstream/main'

This commit is contained in:
Sam Heinz
2025-03-04 17:44:55 +10:00
273 changed files with 4157 additions and 1229 deletions

View File

@@ -31,14 +31,14 @@ function update_script() {
systemctl stop overseerr
cd /opt/overseerr
output=$(git pull)
git pull &>/dev/null
$STD git pull
if echo "$output" | grep -q "Already up to date."; then
msg_ok " $APP is already up to date."
systemctl start overseerr
exit
fi
yarn install &>/dev/null
yarn build &>/dev/null
$STD yarn install
$STD yarn build
systemctl start overseerr
msg_ok "Updated $APP"
exit