We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9358dd commit b5f4b62Copy full SHA for b5f4b62
src/home.rs
@@ -121,14 +121,14 @@ impl HomeRebuildArgs {
121
Some(spec) => Box::new(out_path.get_path().join("specialisation").join(spec)),
122
};
123
124
- // just do nothing for None case (fresh installs)
+ // Just do nothing for None case (fresh installs)
125
if let Some(generation) = prev_generation {
126
- Command::new("nvd")
127
- .arg("diff")
128
- .arg(generation)
129
- .arg(target_profile.get_path())
130
- .message("Comparing changes")
131
- .run()?;
+ platform::compare_configurations(
+ generation.to_str().unwrap_or(""),
+ target_profile.get_path(),
+ false,
+ "Comparing changes",
+ )?;
132
}
133
134
if self.common.dry || matches!(variant, Build) {
0 commit comments