ignores environment variable settings which include more than a single = sign, so I'm not sure that there's an obvious way for me to pass this data in.
Note that this applies both to --env and --envFile.
I think this PR should fix the issue you're having. Apologies for not considering = might be a part of the value, makes total sense for things like GraphQL IDs etc
I think this PR should fix the issue you're having. Apologies for not considering = might be a part of the value, makes total sense for things like GraphQL IDs etc
We're trying to run the command:
with the intention of having the environment variable
FOOBAR
be set tohello=there
, but this code here:https://github.com/buildkite/cli/blob/80141e2e7563688f60eb3c853bda7f42d5d91134/pkg/cmd/build/new.go#L67-L86
ignores environment variable settings which include more than a single
=
sign, so I'm not sure that there's an obvious way for me to pass this data in.Note that this applies both to
--env
and--envFile
.