pinokiod 6.0.23 → 6.0.25
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/server/index.js +1 -1
package/package.json
CHANGED
package/server/index.js
CHANGED
|
@@ -8325,7 +8325,7 @@ class Server {
|
|
|
8325
8325
|
const geminiForkScript = path.resolve(__dirname, "scripts", "fork_gemini_session.js")
|
|
8326
8326
|
const forkSessionCommand = `node ${JSON.stringify(geminiForkScript)} ${JSON.stringify(entry.source)} ${JSON.stringify(entry.id)}`
|
|
8327
8327
|
const cloneAndResume = process.platform === "win32"
|
|
8328
|
-
? `for /f "usebackq delims=" %
|
|
8328
|
+
? `for /f "usebackq delims=" %25I in (\`${forkSessionCommand}\`) do ${resumeBaseCommand} --resume "%25I"`
|
|
8329
8329
|
: `FORK_SESSION_ID=$(${forkSessionCommand}) && ${resumeBaseCommand} --resume "$FORK_SESSION_ID"`
|
|
8330
8330
|
forkCommand = cloneAndResume
|
|
8331
8331
|
} else {
|