Skip to content

Commit

Permalink
Merge branch 'main' into bs_aldinezi_removeKeys
Browse files Browse the repository at this point in the history
  • Loading branch information
aldinezi authored Jul 29, 2024
2 parents cde3fa6 + e0e42e4 commit c036f42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/build.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ async function logBuildStatus(language, missingKeys) {
core.info(`\nMissing ${missingKeys.length} keys in ${language}:`);
const slice = missingKeys.slice(0, 20);
core.info(`${slice},\n and ${missingKeys.length - 20} more...`);
summaryTable.push([language, "⚠️", missingKeys.length]);
summaryTable.push([language, "⚠️", `${missingKeys.length}`]);
} else {
core.notice(`Built ` + `\x1b[44m${language}\x1b[0m ` + `successfully. \n`);
summaryTable.push([language, "✅", "0"]);
Expand Down

0 comments on commit c036f42

Please sign in to comment.