traderclaw-cli 1.0.113 → 1.0.114
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.
|
@@ -1843,7 +1843,10 @@ export function spawnOpenClawCodexAuthLoginChild() {
|
|
|
1843
1843
|
const cmdline = "openclaw models auth login --provider openai-codex";
|
|
1844
1844
|
// --return propagates the inner command's exit code (util-linux 2.38+).
|
|
1845
1845
|
// Without it, script may exit 0 even if openclaw fails.
|
|
1846
|
-
|
|
1846
|
+
// -f/--flush: when the wizard reads script's stdout via a pipe, default
|
|
1847
|
+
// block buffering can delay OAuth URLs until the buffer fills (e.g. 4KiB+),
|
|
1848
|
+
// tripping the install wizard's URL detection timeout (OpenClaw 2026.4.x+).
|
|
1849
|
+
return spawn("script", ["--return", "-f", "-q", "-c", cmdline, "/dev/null"], {
|
|
1847
1850
|
stdio: ["pipe", "pipe", "pipe"],
|
|
1848
1851
|
shell: false,
|
|
1849
1852
|
});
|
package/bin/openclaw-trader.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "traderclaw-cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.114",
|
|
4
4
|
"description": "Global TraderClaw CLI (install --wizard, setup, precheck). Installs solana-traderclaw as a dependency for OpenClaw plugin files.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"node": ">=22"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"solana-traderclaw": "^1.0.
|
|
20
|
+
"solana-traderclaw": "^1.0.114"
|
|
21
21
|
},
|
|
22
22
|
"keywords": [
|
|
23
23
|
"traderclaw",
|