Removed debug output, added -d to makepkg clone

i18n
Michal 2 years ago committed by GitHub
parent f818ce4eeb
commit 335e0d8ef1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -181,7 +181,6 @@ fn clone(pkg: &String, pkgcache: &str, options: &Options) {
// See if package is already cloned to AUR_CACHE // See if package is already cloned to AUR_CACHE
let dirs = list(pkgcache); let dirs = list(pkgcache);
println!("{:?}", dirs);
if dirs.contains(pkg) { if dirs.contains(pkg) {
// Enter directory and git pull // Enter directory and git pull
if options.verbosity > 1 { if options.verbosity > 1 {
@ -224,7 +223,7 @@ fn clone(pkg: &String, pkgcache: &str, options: &Options) {
))) )))
.unwrap(); .unwrap();
ShellCommand::makepkg() ShellCommand::makepkg()
.arg("-o") .arg("-od")
.wait() .wait()
.silent_unwrap(AppExitCode::MakePkgError); .silent_unwrap(AppExitCode::MakePkgError);
} }

Loading…
Cancel
Save