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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/server/index.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pinokiod",
3
- "version": "6.0.23",
3
+ "version": "6.0.25",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
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=" %I in (\`${forkSessionCommand}\`) do ${resumeBaseCommand} --resume "%I"`
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 {