Skip to content

Commit

Permalink
fix: allow uppercase in project name (#788)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbarrosop authored Oct 13, 2023
1 parent 133cbbb commit 86e2681
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clienv/clienv.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
)

func sanitizeName(name string) string {
re := regexp.MustCompile(`[^a-z0-9_-]`)
re := regexp.MustCompile(`[^a-zA-Z0-9_-]`)
return strings.ToLower(re.ReplaceAllString(name, ""))
}

Expand Down

0 comments on commit 86e2681

Please sign in to comment.