From 74e14304d49529d0893cc3d70df0e2f3367f0bd2 Mon Sep 17 00:00:00 2001 From: Michal S Date: Sun, 21 Aug 2022 14:57:25 +0100 Subject: [PATCH] removed some useless things --- src/operations/aur_install.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/operations/aur_install.rs b/src/operations/aur_install.rs index 89b96fe..48992ce 100644 --- a/src/operations/aur_install.rs +++ b/src/operations/aur_install.rs @@ -280,7 +280,7 @@ pub fn aur_install(a: Vec, options: Options, orig_cachedir: &str) { .wait() .silent_unwrap(AppExitCode::MakePkgError); - if !status.success() && status.code().unwrap() != 13 { + if !status.success() { // If build failed, push to failed vec failed.push(pkg.clone()); return;