Skip to content

Commit

Permalink
chore: fix --project-tag typo in hint message
Browse files Browse the repository at this point in the history
  • Loading branch information
j-luong committed Nov 20, 2024
1 parent 296b51a commit 35f48b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/commands/monitor/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ export function generateTags(options): Tag[] | undefined {
const parts = keyEqualsValue.split('=');
if (parts.length !== 2) {
throw new ValidationError(
`The tag "${keyEqualsValue}" does not have an "=" separating the key and value. For example: --project-tag=KEY=VALUE`,
`The tag "${keyEqualsValue}" does not have an "=" separating the key and value. For example: --project-tags=KEY=VALUE`,
);
}
tags.push({
Expand Down

0 comments on commit 35f48b4

Please sign in to comment.