From 9fd1a868cb6447173781d9101bc4fa52f5cadc5a Mon Sep 17 00:00:00 2001 From: Sai Vishnu M Date: Mon, 28 Jul 2025 13:46:31 +0530 Subject: [PATCH] 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> --- install/actualbudget-install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install/actualbudget-install.sh b/install/actualbudget-install.sh index 59b2d3870f..b9d1d8fa92 100644 --- a/install/actualbudget-install.sh +++ b/install/actualbudget-install.sh @@ -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"