Automatically detect gsudo (#469)

This commit is contained in:
Roey Darwish Dror
2020-07-10 11:21:19 +03:00
committed by GitHub
parent 69b9c4b24c
commit 065565240e
5 changed files with 15 additions and 38 deletions

View File

@@ -385,6 +385,15 @@ impl Config {
check_deprecated!(config_file, yay_arguments, linux, yay_arguments);
check_deprecated!(config_file, accept_all_windows_updates, windows, accept_all_updates);
if config_file
.windows
.as_ref()
.map(|w| w.use_gsudo_with_choco.is_some())
.unwrap_or(false)
{
println!("use_gsudo_with_choco is deprecated and will be removed in the future. Topgrade will not automatically detect and use gsudo");
}
let allowed_steps = Self::allowed_steps(&opt, &config_file);
Ok(Self {
@@ -526,16 +535,6 @@ impl Config {
.unwrap_or(false)
}
/// Whether to use gsudo command with choco if available
#[allow(dead_code)]
pub fn use_gsudo_with_choco(&self) -> bool {
self.config_file
.windows
.as_ref()
.and_then(|w| w.use_gsudo_with_choco)
.unwrap_or(false)
}
/// Whether Brew cask should be greedy
#[allow(dead_code)]
pub fn brew_cask_greedy(&self) -> bool {