From 3c9881f21a1f1b31e7bc77f412e15c9c3a7d7b49 Mon Sep 17 00:00:00 2001 From: "CanbiZ (MickLesk)" <47820557+MickLesk@users.noreply.github.com> Date: Thu, 12 Mar 2026 08:36:06 +0100 Subject: [PATCH] fix(n8n): add build-essential to update dependencies node-gyp requires make/gcc (from build-essential) and python3 to compile native modules like isolated-vm during npm update. These were present in the install script but missing from the update path. Closes #12786 --- ct/n8n.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ct/n8n.sh b/ct/n8n.sh index 739de7e25..1c5e3bcfa 100644 --- a/ct/n8n.sh +++ b/ct/n8n.sh @@ -28,7 +28,7 @@ function update_script() { exit fi - ensure_dependencies graphicsmagick + ensure_dependencies build-essential python3 python3-setuptools graphicsmagick NODE_VERSION="24" setup_nodejs msg_info "Updating n8n"