Increase the maximum line size

This commit is contained in:
Roey Darwish Dror
2018-07-03 14:33:48 +03:00
parent af02d8d761
commit 35dbab8beb
6 changed files with 18 additions and 81 deletions

View File

@@ -4,11 +4,7 @@ use std::path::PathBuf;
use std::process::Command;
pub fn run_chocolatey(choco: &PathBuf) -> Result<(), failure::Error> {
Command::new(&choco)
.args(&["upgrade", "all"])
.spawn()?
.wait()?
.check()?;
Command::new(&choco).args(&["upgrade", "all"]).spawn()?.wait()?.check()?;
Ok(())
}