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.
This commit is contained in:
Marvin Zhang
2025-04-16 10:15:10 +08:00
parent c01b300a95
commit 99414a4dde

View File

@@ -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"
)