llmstash 1.0.9 → 1.1.0
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.
Potentially problematic release.
This version of llmstash might be problematic. Click here for more details.
- package/bin/llmstash.js +1 -1
- package/package.json +1 -1
package/bin/llmstash.js
CHANGED
|
@@ -481,7 +481,7 @@ const runProxy = (target) => {
|
|
|
481
481
|
else if (target === 'codex') realPath = path.join(globalModules, '@openai', 'codex', 'bin', 'codex.js');
|
|
482
482
|
else if (target === 'gemini') realPath = path.join(globalModules, 'gemini-cli', 'bin', 'gemini.js');
|
|
483
483
|
|
|
484
|
-
const argsPassed = process.argv.slice(
|
|
484
|
+
const argsPassed = process.argv.slice(4);
|
|
485
485
|
const child = spawn('node', [realPath, ...argsPassed], {
|
|
486
486
|
stdio: 'inherit'
|
|
487
487
|
});
|