@blockrun/franklin 3.15.46 → 3.15.47
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/dist/commands/task.js +11 -2
- package/package.json +1 -1
package/dist/commands/task.js
CHANGED
|
@@ -87,8 +87,17 @@ export function buildTaskCommand() {
|
|
|
87
87
|
const meta = readTaskMeta(runId);
|
|
88
88
|
if (meta) {
|
|
89
89
|
console.log(`\n--- ${meta.status} ---`);
|
|
90
|
-
|
|
91
|
-
|
|
90
|
+
// Don't reprint terminalSummary: it's a whitespace-collapsed
|
|
91
|
+
// copy of the last ~800 bytes of the log, and we just printed
|
|
92
|
+
// the FULL log via printNew(). Verified 2026-05-04 on a real
|
|
93
|
+
// failed task: the user saw the same lines twice, the second
|
|
94
|
+
// copy as one squashed line, e.g.
|
|
95
|
+
// [17:43:40] resume state: ... [17:43:40] manifest cached: ...
|
|
96
|
+
// which is harder to read than the multi-line original.
|
|
97
|
+
// exitCode is the only useful extra here (the log doesn't
|
|
98
|
+
// record it explicitly).
|
|
99
|
+
if (meta.exitCode !== undefined)
|
|
100
|
+
console.log(`exitCode: ${meta.exitCode}`);
|
|
92
101
|
}
|
|
93
102
|
});
|
|
94
103
|
cmd
|
package/package.json
CHANGED