aboutsummaryrefslogtreecommitdiff
path: root/sboupgrade
diff options
context:
space:
mode:
authorAndreas Guldstrand <andreas.guldstrand@gmail.com>2016-04-16 17:21:28 +0200
committerAndreas Guldstrand <andreas.guldstrand@gmail.com>2016-04-16 17:21:28 +0200
commit0a035d36fb6a225640d31162e4b348dacfa93f96 (patch)
treee551ff0a6a8e0f20583b22a16213c5b708c3194b /sboupgrade
parentc1e7155333f1a86f90a7843e87bb1aa9145acdda (diff)
downloadsbotools2-0a035d36fb6a225640d31162e4b348dacfa93f96.tar.xz
Remove useless conditions from show_usage/version invocations
Diffstat (limited to 'sboupgrade')
-rwxr-xr-xsboupgrade7
1 files changed, 4 insertions, 3 deletions
diff --git a/sboupgrade b/sboupgrade
index e077511..c28819c 100755
--- a/sboupgrade
+++ b/sboupgrade
@@ -70,8 +70,8 @@ GetOptions(
'all' => \$all,
);
-show_usage() and exit 0 if $help;
-show_version() and exit 0 if $vers;
+if ($help) { show_usage(); exit 0 }
+if ($vers) { show_version(); exit 0 }
my $updates;
if ($all) {
@@ -79,9 +79,10 @@ if ($all) {
print "Checking for updated SlackBuilds...\n";
$updates = get_available_updates();
push @ARGV, map { $_->{name} } @$updates;
+ if (!@ARGV) { print "Nothing to update.\n"; exit 0 }
}
-show_usage() and exit 1 unless exists $ARGV[0];
+if (!@ARGV) { show_usage(); exit 1 }
$noclean = $noclean eq 'TRUE' ? 1 : 0;
$distclean = $distclean eq 'TRUE' ? 1 : 0;