gm-gc 2.0.209 → 2.0.211
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/gemini-extension.json
CHANGED
|
@@ -258,7 +258,7 @@ const run = () => {
|
|
|
258
258
|
.then(out => process.stdout.write(String(out || '')))
|
|
259
259
|
.catch(e => { process.stderr.write(e.message || String(e)); process.exit(1); });
|
|
260
260
|
`;
|
|
261
|
-
const r = spawnSync('bun', ['-e', runnerCode], { encoding: 'utf-8', timeout:
|
|
261
|
+
const r = spawnSync('bun', ['-e', runnerCode], { encoding: 'utf-8', timeout: 60000, windowsHide: true });
|
|
262
262
|
const out = (r.stdout || '').trimEnd();
|
|
263
263
|
const err = (r.stderr || '').trimEnd();
|
|
264
264
|
if (r.status !== 0 || r.error) return allowWithNoop(`exec:${rawLang} error:\n\n${r.error ? r.error.message : (err || 'exec failed')}`);
|