We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 700f06b commit c6c69d2Copy full SHA for c6c69d2
test/simulationMain.ts
@@ -82,7 +82,7 @@ async function main() {
82
console.error(`\n${red("⚠️⚠️⚠️ Command failed with:")}\n\n`);
83
84
for (let i = 0; i < errors.length; i++) {
85
- const idx = errors.length === 1 ? '' : `Error ${i + 1}) `;
+ const idx = `Error${errors.length === 1 ? '' : ` ${i + 1})`} `;
86
console.error(`\t${idx}${errors[i]}\n\n`);
87
}
88
0 commit comments