diff --git a/src/steps/os/linux.rs b/src/steps/os/linux.rs index b0b5b6a3..0d5dcd2a 100644 --- a/src/steps/os/linux.rs +++ b/src/steps/os/linux.rs @@ -544,7 +544,11 @@ pub fn run_config_update(sudo: Option<&PathBuf>, run_type: RunType) -> Result<() } print_separator("Configuration update"); - run_type.execute(sudo).arg(pacdiff).check_run()?; + run_type + .execute(sudo) + .arg("--preserve-env=DIFFPROG") + .arg(pacdiff) + .check_run()?; } Ok(())