Change behaviour of --config-file flag with config commands #957
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Please check if the PR fulfills these requirements
before creating one)
our contributing guidelines
Changes the behaviour of
config init
andconfig dump
when using the--config-file
flag.config init --dest-file <some_path_file>
doesn't initialize a new config file using the specified path and always overrides existing file in default config path.Calling
config init --dest-file <path> --dest-dir <path>
creates a new config file in path specified by--dest-dir
.Calling
config dump --config-file <some_path_file>
always prints the default configurations.Calling
config init --dest-file <some_path_file>
initializes a new config file using the specified path, if the file exists and the--overwrite
flag is not set an error is returned, otherwise a new file is created.Calling
config init --dest-file <path> --dest-dir <path>
now returns an error.Calling
config dump --config-file <some_path_file>
prints the configuration file specified.Calling
config dump --config-file <some_path_file> --additional-urls=<urls>
prints the configuration file specified butadditional_urls
are overridden by the ones specified with the flag.I don't think so. 🤔
None.
See how to contribute