From 8301f04b5891f9a1ce717a83d15d7593caf5b64c Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Thu, 5 Mar 2026 22:30:20 +0100 Subject: [PATCH] fluid-calendar: add build-essential to install and update dependencies (#12602) * Initial plan * fix: add build-essential dependency to fluid-calendar install script Co-authored-by: MickLesk <47820557+MickLesk@users.noreply.github.com> * fix: add ensure_dependencies build-essential in update_script Co-authored-by: MickLesk <47820557+MickLesk@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: MickLesk <47820557+MickLesk@users.noreply.github.com> --- ct/fluid-calendar.sh | 1 + install/fluid-calendar-install.sh | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ct/fluid-calendar.sh b/ct/fluid-calendar.sh index 47bf479f0..3b8a89c65 100644 --- a/ct/fluid-calendar.sh +++ b/ct/fluid-calendar.sh @@ -29,6 +29,7 @@ function update_script() { exit fi + ensure_dependencies build-essential NODE_VERSION="24" setup_nodejs if check_for_gh_release "fluid-calendar" "dotnetfactory/fluid-calendar"; then diff --git a/install/fluid-calendar-install.sh b/install/fluid-calendar-install.sh index 9fa132702..3f20f0a8b 100644 --- a/install/fluid-calendar-install.sh +++ b/install/fluid-calendar-install.sh @@ -14,7 +14,9 @@ network_check update_os msg_info "Installing Dependencies" -$STD apt install -y zip +$STD apt install -y \ + build-essential \ + zip msg_ok "Installed Dependencies" PG_VERSION="17" setup_postgresql