Clean really well

Yes, double -f is necessary, ask Linus why.
This commit is contained in:
Daniel_I_Am 2021-12-21 20:02:18 +01:00
parent 09d9346078
commit b2b678447a

View File

@ -58,6 +58,8 @@ fn process_package(packages_path: &String, package_name: &String, url: &String)
.arg("-C") .arg("-C")
.arg(folder_path.clone().to_str().unwrap()) .arg(folder_path.clone().to_str().unwrap())
.arg("clean") .arg("clean")
.arg("-d")
.arg("-f")
.arg("-f") .arg("-f")
.arg("-x") .arg("-x")
.output() .output()