Cargo fmt

This commit is contained in:
Roey Darwish Dror
2018-12-31 13:34:56 +02:00
parent 957d73c634
commit 2cac8a7970
5 changed files with 22 additions and 15 deletions

View File

@@ -125,7 +125,10 @@ fn run() -> Result<(), Error> {
#[cfg(unix)]
report.push_result(execute(|| unix::run_homebrew(opt.cleanup, opt.run_type), opt.no_retry)?);
#[cfg(target_os = "freebsd")]
report.push_result(execute(|| freebsd::upgrade_packages(&sudo, opt.run_type), opt.no_retry)?);
report.push_result(execute(
|| freebsd::upgrade_packages(&sudo, opt.run_type),
opt.no_retry,
)?);
#[cfg(unix)]
report.push_result(execute(|| unix::run_nix(opt.run_type), opt.no_retry)?);