Loosen email regex

This commit is contained in:
Maidul Islam
2022-12-08 09:01:24 -05:00
parent da6a8ccdea
commit 58b252a9e9
2 changed files with 2 additions and 2 deletions

View File

@ -114,7 +114,7 @@ func init() {
func askForLoginCredentials() (email string, password string, err error) {
validateEmail := func(input string) error {
matched, err := regexp.MatchString("^[\\w!#$%&'*+/=?`{|}~^-]+(?:\\.[\\w!#$%&'*+/=?`{|}~^-]+)*@(?:[a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,6}$", input)
matched, err := regexp.MatchString("^\\S+@\\S+$", input)
if err != nil || !matched {
return errors.New("this doesn't look like an email address")
}

View File

@ -15,7 +15,7 @@ var rootCmd = &cobra.Command{
Short: "Infisical CLI is used to inject environment variables into any process",
Long: `Infisical is a simple, end-to-end encrypted service that enables teams to sync and manage their environment variables across their development life cycle.`,
CompletionOptions: cobra.CompletionOptions{DisableDefaultCmd: true},
Version: "0.1.6",
Version: "0.1.8",
}
// Execute adds all child commands to the root command and sets flags appropriately.