fix(erpnext): add ~/.local/bin to PATH after uv tool install

uv tool install frappe-bench places the bench executable in
~/.local/bin which is not on PATH by default, causing 'command
not found' (exit 127) when running bench init.
This commit is contained in:
CanbiZ (MickLesk)
2026-03-25 11:07:17 +01:00
parent 65a9b046c2
commit 525387e6d5

View File

@@ -54,6 +54,7 @@ msg_ok "Installed wkhtmltopdf"
msg_info "Installing Frappe Bench"
$STD uv tool install frappe-bench
export PATH="$HOME/.local/bin:$PATH"
msg_ok "Installed Frappe Bench"
msg_info "Initializing Frappe Bench"