Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
config: Return exit code 0 when getting default value
`crc config get xxx` prints: ``` Configuration property 'xxx' is not set. Default value is 'yyy' ``` when its value is not set, but the command exit code is 1. Since '1' is returned for errors (`crc config get invalid-prop`), this is not the correct exit code. This commit changes it to 0, which is the same as successful `crc config get` calls when the value is not the default one. This fixes crc-org#3678
- Loading branch information