@tryfridayai/cli 0.2.0 → 0.2.1
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/commands/chat.js +1 -1
package/package.json
CHANGED
package/src/commands/chat.js
CHANGED
|
@@ -260,7 +260,7 @@ export default async function chat(args) {
|
|
|
260
260
|
console.log(`Starting Friday with workspace: ${workspacePath}`);
|
|
261
261
|
}
|
|
262
262
|
|
|
263
|
-
const backend = spawn(
|
|
263
|
+
const backend = spawn(process.execPath, [serverScript], {
|
|
264
264
|
cwd: runtimeDir,
|
|
265
265
|
env,
|
|
266
266
|
stdio: ['pipe', 'pipe', 'pipe'],
|