Skip to content

fix(cli): correct project-name validation message (dashes, not hashes)#12

Open
Baqauye wants to merge 1 commit intoUomi-network:mainfrom
Baqauye:fix/project-name-validation-error-message-typo
Open

fix(cli): correct project-name validation message (dashes, not hashes)#12
Baqauye wants to merge 1 commit intoUomi-network:mainfrom
Baqauye:fix/project-name-validation-error-message-typo

Conversation

@Baqauye
Copy link

@Baqauye Baqauye commented Aug 14, 2025

What was typo?
• Regex allows: letters, numbers, _ (underscore) and - (dash).
• Error message incorrectly said:
“…may only include letters, numbers, underscores and hashes”.

What was changed?

Before
message ...underscores and hashes

After
...underscores and dashes

• Text now matches the actual rule implemented by the regex /^[a-zA-Z0-9_-]+$/.
• Zero functional change; only the user-facing string is corrected.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant