You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 30, 2022. It is now read-only.
When running the sas-container-recipes, I get this message :
The --docker-namespace argument contains invalid characters. It must contain contain only A-Z, a-z, 0-9, _, ., or -
And my namespace is : sas-sbxwvw.
So either the regexNoSpecialCharacters function in order.go is not correct, or the message should be changed to not allow a "-" (hyphen)
I'm not an regexp specialist but according to https://regex101.com/ this function :
^[_A-z0-9]([_A-z0-9\-\.])$
does not allow sas-sbxwvw, whereas this function :
^[_A-z0-9]([_A-z0-9-.])$
seems to allow sas-sbxwvw
The text was updated successfully, but these errors were encountered:
Hmmm, but running the recipes with this regexp : ^[_A-z0-9]*([_A-z0-9\-\.]*)$ seems to result in an error : ./order.go:457:71: unknown escape sequence
so obviously it's a bit more complicated....
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When running the sas-container-recipes, I get this message :
The --docker-namespace argument contains invalid characters. It must contain contain only A-Z, a-z, 0-9, _, ., or -
And my namespace is : sas-sbxwvw.
So either the regexNoSpecialCharacters function in order.go is not correct, or the message should be changed to not allow a "-" (hyphen)
I'm not an regexp specialist but according to https://regex101.com/ this function :
^[_A-z0-9]([_A-z0-9\-\.])$
does not allow sas-sbxwvw, whereas this function :
^[_A-z0-9]([_A-z0-9-.])$
seems to allow sas-sbxwvw
The text was updated successfully, but these errors were encountered: