Skip to content

Commit

Permalink
fix(plugin-release): error message typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kherock committed Aug 4, 2021
1 parent 10e2b08 commit f687f76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/plugin-release/sources/commands/releaseCommit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export default class ReleaseCommand extends BaseCommand {

const projectTagName = `v${project.topLevelWorkspace.locator.reference}`;
if (tagList.has(projectTagName))
throw new UsageError(`${projectTagName} has already been releeased`);
throw new UsageError(`${projectTagName} has already been released`);

const report = await StreamReport.start({
configuration,
Expand Down

0 comments on commit f687f76

Please sign in to comment.