Skip to content

Commit

Permalink
attempt to fix sonarcloud bug
Browse files Browse the repository at this point in the history
  • Loading branch information
smoya committed May 2, 2023
1 parent 22ab560 commit 44be00b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions scripts/fetch-asyncapi-example.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,12 +105,11 @@ const tidyup = async () => {
fs.unlinkSync(TEMP_ZIP_NAME);
};

const main = async () => {
const main = (async () => {
await fetchAsyncAPIExamplesFromExternalURL();
await unzipAsyncAPIExamples();
await buildCLIListFromExamples();
await tidyup();
};
});

main();

0 comments on commit 44be00b

Please sign in to comment.