diff options
Diffstat (limited to 'vendor/gix/src/env.rs')
-rw-r--r-- | vendor/gix/src/env.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/vendor/gix/src/env.rs b/vendor/gix/src/env.rs index ce5461bcc..b4973b8d5 100644 --- a/vendor/gix/src/env.rs +++ b/vendor/gix/src/env.rs @@ -20,7 +20,7 @@ pub fn args_os() -> impl Iterator<Item = OsString> { /// Equivalent to `std::env::args_os()`, but with precomposed unicode on MacOS and other apple platforms. /// -/// Note that this ignores `core.precomposeUnicode` as gix-config isn't available yet. It's default enabled in modern git though. +/// Note that this ignores `core.precomposeUnicode` as git-config isn't available yet. It's default enabled in modern git though. #[cfg(target_vendor = "apple")] pub fn args_os() -> impl Iterator<Item = OsString> { use unicode_normalization::UnicodeNormalization; @@ -65,6 +65,7 @@ pub mod collate { #[error(transparent)] FindExistingRemote(#[from] crate::remote::find::existing::Error), #[error(transparent)] + #[cfg(feature = "credentials")] CredentialHelperConfig(#[from] crate::config::credential_helpers::Error), #[cfg(any(feature = "blocking-network-client", feature = "async-network-client"))] #[error(transparent)] |