Update actualbudget.sh

fixes https://github.com/tteck/Proxmox/issues/3250
This commit is contained in:
tteckster 2024-06-22 16:52:35 -04:00 committed by GitHub
parent dafe17ac95
commit 72d70d7842
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -58,8 +58,8 @@ if [[ ! -d /opt/actualbudget ]]; then msg_error "No ${APP} Installation Found!";
msg_info "Updating ${APP}"
systemctl stop actualbudget.service
cd /opt/actualbudget
git pull
yarn install
git pull &>/dev/null
yarn install &>/dev/null
systemctl start actualbudget.service
msg_ok "Successfully Updated ${APP}"
exit