Revert default_missing_value to default_value (#380)

We don't need to do this anymore. It was some change I was testing that
didn't work, and I forgot to remove it.
This commit is contained in:
Ana Hobden 2023-03-28 09:58:57 -07:00 committed by GitHub
parent 607b5271c1
commit c0e9e7015e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -221,7 +221,7 @@ pub struct CommonSettings {
global = true,
value_parser = crate::diagnostics::diagnostic_endpoint_validator,
num_args = 0..=1, // Required to allow `--diagnostic-endpoint` or `NIX_INSTALLER_DIAGNOSTIC_ENDPOINT=""`
default_missing_value = "https://install.determinate.systems/nix/diagnostic"
default_value = "https://install.determinate.systems/nix/diagnostic"
)]
pub diagnostic_endpoint: Option<String>,
}