From 335e0d8ef15353132bbc7fb42e64454527a25938 Mon Sep 17 00:00:00 2001 From: Michal Date: Fri, 26 Aug 2022 04:01:12 +0000 Subject: [PATCH] Removed debug output, added -d to makepkg clone --- src/operations/aur_install.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/operations/aur_install.rs b/src/operations/aur_install.rs index 074653d..2452e0b 100644 --- a/src/operations/aur_install.rs +++ b/src/operations/aur_install.rs @@ -181,7 +181,6 @@ fn clone(pkg: &String, pkgcache: &str, options: &Options) { // See if package is already cloned to AUR_CACHE let dirs = list(pkgcache); - println!("{:?}", dirs); if dirs.contains(pkg) { // Enter directory and git pull if options.verbosity > 1 { @@ -224,7 +223,7 @@ fn clone(pkg: &String, pkgcache: &str, options: &Options) { ))) .unwrap(); ShellCommand::makepkg() - .arg("-o") + .arg("-od") .wait() .silent_unwrap(AppExitCode::MakePkgError); }