Skip to content

Commit

Permalink
chore: add \n for better readability
Browse files Browse the repository at this point in the history
  • Loading branch information
AnimeshKumar923 committed Mar 15, 2024
1 parent 9e7f840 commit 8a34862
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/validation/validate-examples.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ let validationErrors = []; // Array to store validation errors
files.forEach((file) => {
filesCount++;
try {
console.log(`Validating: ${file}`);
console.log(`\nValidating: ${file}`);
execSync(`npx asyncapi validate ${file}`, { stdio: 'inherit' });
} catch (error) {
console.error(`Validation failed for: ${file}`);
console.error(`Validation failed for: ${file}\n`);
// process.exit(1);
}

Expand Down

0 comments on commit 8a34862

Please sign in to comment.