add 'g++' to actualbudget-install.sh (#6293)

* add 'g++' to actualbudget-install.sh

The install script fails on line 53 (`$STD npm install --location=global @actual-app/sync-server`). 
Installing `gcc`, which is required by `better-sqlite3`, which `@actual-app/sync-server` depends on, is the solution. 

Added `g++` to the dependency line `18`.

* formatting

---------

Co-authored-by: CanbiZ <47820557+MickLesk@users.noreply.github.com>
This commit is contained in:
Sai Vishnu M 2025-07-28 13:46:31 +05:30 committed by GitHub
parent a5d540648e
commit 9fd1a868cb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -15,7 +15,8 @@ update_os
msg_info "Installing Dependencies"
$STD apt-get install -y \
make
make \
g++
msg_ok "Installed Dependencies"
msg_info "Installing Actual Budget"