commit 7d98bba95d59e3620f4cc9925d37cc57d435da9a
parent ad087c56023d6429f2cb52986b3ddb16574517fe
Author: Andreas Guldstrand <andreas.guldstrand@gmail.com>
Date: Sun, 5 Feb 2017 13:16:42 +0100
sboremove: three more small fixes in logic
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git 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.';
}