Skip to content

Commit

Permalink
include trow error in catch statement for main.js
Browse files Browse the repository at this point in the history
Signed-off-by: Samuel Valdes Gutierrez <[email protected]>
  • Loading branch information
BigSamu committed Apr 3, 2024
1 parent 1fd467f commit ddf90c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const run = async () => {
}
} catch (error) {
console.error(`${error.message}`);
// throw error;
throw error;
} finally {
console.log("Changelog parsing process complete.");
}
Expand Down

0 comments on commit ddf90c0

Please sign in to comment.