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
The Bash implementation of the program doesn't perform validation for value types. It queries the top level keys (env.<key> and apps.<app>.env.<key>) and expects the value to be of primitive types. However, the user may have set a nested key or a JSON object as the value. In such case, the program exports a stripped down JSON object as the environment value.
The Bash implementation of the program doesn't perform validation for value types. It queries the top level keys (
env.<key>
andapps.<app>.env.<key>
) and expects the value to be of primitive types. However, the user may have set a nested key or a JSON object as the value. In such case, the program exports a stripped down JSON object as the environment value.For example, setting:
env.x.y=value
, exportsX=y:value
env.a.b.c=value
, exportA=b:c:value
env.k={"j":"value"}
, exportsK=j:value
Originally posted by @farshidtz in #2 (review)
The text was updated successfully, but these errors were encountered: