We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It there are two config files f1.json and f2.json which look like this:
f1.json
f2.json
f1.json:
{ "nested": { "a": true, "b": "test" } }
f2.json:
{ "nested": { "b": "test2" "c": 123 } }
And json_env is called like this: json_env -c f1.json -c f2.json ....
json_env
json_env -c f1.json -c f2.json ...
The resulting merged file should look like this:
{ "nested": { "a": true "b": "test2" "c": 123 } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It there are two config files
f1.json
andf2.json
which look like this:f1.json:
f2.json:
And
json_env
is called like this:json_env -c f1.json -c f2.json ...
.The resulting merged file should look like this:
The text was updated successfully, but these errors were encountered: