@kvell007/embed-labs-cli 0.1.0-alpha.35 → 0.1.0-alpha.37

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/index.js CHANGED
@@ -7132,11 +7132,24 @@ function renderLocalToolchainValidation(result) {
7132
7132
  `board=${result.board_id}`,
7133
7133
  `mode=${result.mode}`,
7134
7134
  `host=${result.host.platform}/${result.host.arch}`,
7135
- `release_root=${result.release_root}`
7135
+ `release_root=${result.release_root}`,
7136
+ `summary=${result.summary_for_user}`
7136
7137
  ];
7138
+ if (!result.ok && result.missing_groups.length > 0) {
7139
+ lines.push(`missing_groups=${result.missing_groups.join(", ")}`);
7140
+ }
7141
+ if (result.repair_command) {
7142
+ lines.push(`repair_command=${result.repair_command}`);
7143
+ }
7137
7144
  for (const check of result.checked_paths) {
7138
7145
  lines.push(`${check.exists ? "ok" : "missing"} ${check.label}: ${check.path}`);
7139
7146
  }
7147
+ if (result.path_leaks.length > 0) {
7148
+ lines.push("path_leaks:");
7149
+ for (const leak of result.path_leaks) {
7150
+ lines.push(` ${leak.label}: ${leak.path} contains ${leak.forbidden}`);
7151
+ }
7152
+ }
7140
7153
  if (result.notes.length > 0) {
7141
7154
  lines.push("notes:");
7142
7155
  for (const note of result.notes) {