From 80392803378498bde04aebf319663bd0c7f10e4c Mon Sep 17 00:00:00 2001 From: "CanbiZ (MickLesk)" <47820557+MickLesk@users.noreply.github.com> Date: Fri, 20 Mar 2026 16:15:17 +0100 Subject: [PATCH] fix(reactive-resume): add git dependency for v5.0.13+ Reactive Resume v5.0.13 uses vite-plus (vp config) in its prepare script which requires git. Without it, pnpm install fails with 'git command not found' (ELIFECYCLE exit code 1). Closes #13110 --- install/reactive-resume-install.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/install/reactive-resume-install.sh b/install/reactive-resume-install.sh index cdb9f3039..e06e56a12 100644 --- a/install/reactive-resume-install.sh +++ b/install/reactive-resume-install.sh @@ -18,7 +18,9 @@ PG_DB_NAME="reactive_resume" PG_DB_USER="reactive_resume" setup_postgresql_db NODE_VERSION="24" setup_nodejs msg_info "Installing Dependencies" -$STD apt install -y chromium +$STD apt install -y \ + chromium \ + git msg_ok "Installed Dependencies" fetch_and_deploy_gh_release "reactive-resume" "amruthpillai/reactive-resume" "tarball"