From 99414a4ddeb74c3861e15194f7753ce6e37acffc Mon Sep 17 00:00:00 2001 From: Marvin Zhang Date: Wed, 16 Apr 2025 10:15:10 +0800 Subject: [PATCH] fix: update default Node.js binary path in configuration - Changed the default Node.js binary path from /usr/lib/bin to /usr/lib/node_bin to reflect the correct directory structure, ensuring proper environment setup for Node.js development. --- core/utils/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/utils/config.go b/core/utils/config.go index 2ad35b83..ca1f115d 100644 --- a/core/utils/config.go +++ b/core/utils/config.go @@ -33,7 +33,7 @@ const ( MetadataConfigName = "config.json" DefaultPyenvPath = "/root/.pyenv" DefaultNodeModulesPath = "/usr/lib/node_modules" - DefaultNodeBinPath = "/usr/lib/bin" + DefaultNodeBinPath = "/usr/lib/node_bin" DefaultGoPath = "/root/go" )