Skip to content

Commit

Permalink
fixing wrong error message closes: #39
Browse files Browse the repository at this point in the history
  • Loading branch information
gautamkrishnar committed Nov 1, 2020
1 parent b7f5f15 commit 7dbaa16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blog-post-workflow.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const buildReadme = (previousContent, newContent) => {
) {
// Exit with error if comment is not found on the readme
core.error(
`Cannot find the comment tag on the readme:\n<!-- ${tagToLookFor}:START -->\n<!-- ${tagToLookFor}:END -->`
`Cannot find the comment tag on the readme:\n${tagToLookFor}:START -->\n${tagToLookFor}:END -->`
);
process.exit(1);
}
Expand Down

0 comments on commit 7dbaa16

Please sign in to comment.