Skip to content

Commit

Permalink
Merge pull request #5596 from snyk/chore/fixHintTypo
Browse files Browse the repository at this point in the history
chore: fix --project-tag typo in hint message
  • Loading branch information
j-luong authored Nov 21, 2024
2 parents 36648eb + 97c1f07 commit 418c1a8
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 418c1a8

Please sign in to comment.