From a70f342a0cdacab28397b88e5e5a47bee86a57c5 Mon Sep 17 00:00:00 2001 From: isaacclad Date: Mon, 6 Jul 2026 23:14:03 +0000 Subject: [PATCH] Fix deploy symlink hint and prefer system npm in CI. Deploy user cannot update current when APP_ROOT is root-owned; CI falls back to portable Node only when needed. Co-authored-by: Cursor --- deploy/deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/deploy.sh b/deploy/deploy.sh index 7811ab0..0e4d401 100755 --- a/deploy/deploy.sh +++ b/deploy/deploy.sh @@ -200,7 +200,7 @@ switch_current_release() { return 0 fi - echo "Unable to update current release symlink at $CURRENT_LINK" >&2 + echo "Unable to update current release symlink at $CURRENT_LINK (run as root: ln -sfnT $NEW_RELEASE $CURRENT_LINK)" >&2 return 1 }