Remove redundant must_use

This commit is contained in:
Roey Darwish Dror
2019-12-21 15:32:58 +02:00
parent 6b5da066f6
commit 7f92b56fa8
4 changed files with 0 additions and 13 deletions

View File

@@ -25,7 +25,6 @@ pub fn run_fisher(base_dirs: &BaseDirs, run_type: RunType) -> Result<()> {
run_type.execute(&fish).args(&["-c", "fisher"]).check_run()
}
#[must_use]
pub fn run_homebrew(cleanup: bool, run_type: RunType) -> Result<()> {
let brew = require("brew")?;
print_separator("Brew");
@@ -51,7 +50,6 @@ pub fn run_homebrew(cleanup: bool, run_type: RunType) -> Result<()> {
Ok(())
}
#[must_use]
pub fn run_nix(run_type: RunType) -> Result<()> {
let nix = require("nix")?;
let nix_channel = require("nix-channel")?;