@openagents-org/agent-launcher 0.1.13 → 0.1.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/paths.js +3 -0
package/package.json
CHANGED
package/src/paths.js
CHANGED
|
@@ -124,6 +124,9 @@ function _addWindowsPaths(dirs) {
|
|
|
124
124
|
// npm global bin
|
|
125
125
|
if (appData) _push(dirs, path.join(appData, 'npm'));
|
|
126
126
|
|
|
127
|
+
// Portable Node.js installed by OpenAgents Launcher
|
|
128
|
+
_push(dirs, path.join(HOME, '.openagents', 'nodejs'));
|
|
129
|
+
|
|
127
130
|
// Node.js install
|
|
128
131
|
_push(dirs, path.join(programFiles, 'nodejs'));
|
|
129
132
|
|