Rustfmt (fixes #16)

This commit is contained in:
Roey Darwish Dror
2018-06-07 22:36:32 +03:00
parent 63af73ead6
commit 228a131185
2 changed files with 11 additions and 0 deletions

View File

@@ -119,6 +119,12 @@ pub fn run_fwupdmgr(fwupdmgr: &PathBuf) -> Result<(), failure::Error> {
Ok(())
}
pub fn run_rustup(rustup: &PathBuf) -> Result<(), failure::Error> {
Command::new(rustup).arg("update").spawn()?.wait()?.check()?;
Ok(())
}
pub fn upgrade_macos() -> Result<(), failure::Error> {
Command::new("softwareupdate")
.args(&["--install", "--all"])