Most environment variables currently are in form of GOCD_CLI.VALUE. This is very inconvenient for unix shells where . is simply not allowed in environment variable name.
This leads to bad user experience:
$ export GOCDCLI_AUTH.TYPE=basic
bash: export: `GOCDCLI_AUTH.TYPE=basic': not a valid identifier
It would suffice to use underscores, e.g. GOCDCLI_AUTH_TYPE
Most environment variables currently are in form of
GOCD_CLI.VALUE. This is very inconvenient for unix shells where.is simply not allowed in environment variable name.This leads to bad user experience:
It would suffice to use underscores, e.g.
GOCDCLI_AUTH_TYPE