From 7d98bba95d59e3620f4cc9925d37cc57d435da9a Mon Sep 17 00:00:00 2001 From: Andreas Guldstrand Date: Sun, 5 Feb 2017 13:16:42 +0100 Subject: sboremove: three more small fixes in logic --- sboremove | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sboremove b/sboremove index 43a77c3..2a9be2b 100755 --- a/sboremove +++ b/sboremove @@ -168,9 +168,9 @@ sub confirm { if ($remove->{warning}) { say "It is recommended that you view the README before continuing."; if (prompt("Display README now?", default => 'yes')) { - my $readme = get_readme_contents(get_sbo_location($remove)); + my $readme = get_readme_contents(get_sbo_location($remove->{name})); if (not defined $readme) { - warn "Unable to open README for $remove.\n"; + warn "Unable to open README for $remove->{name}.\n"; } else { print "\n" . $readme; } @@ -191,7 +191,7 @@ sub remove { say sprintf "Removing %d package(s)", scalar @confirmed; say join " ", map { $_->{name} } @confirmed; - if (!$non_int and prompt("\nAre you sure you want to continue?", default => 'no')) { + if (!$non_int and !prompt("\nAre you sure you want to continue?", default => 'no')) { return say 'Exiting.'; } -- cgit v1.2.3