diff options
author | Slack Coder <slackcoder@server.ky> | 2025-04-02 08:02:26 -0500 |
---|---|---|
committer | Slack Coder <slackcoder@server.ky> | 2025-04-02 08:02:26 -0500 |
commit | 953e3e79326c4f8b223cf92870563d43b34de356 (patch) | |
tree | aa4fec2983ef5de7e634bc87c19172911957ca54 /sboinstall | |
parent | b6437cbb4c057abdedbeaf017048b1bb8ec72d42 (diff) | |
download | sbotools2-953e3e79326c4f8b223cf92870563d43b34de356.tar.xz |
Fix sanity checks in sboinstall, sboupgrade
Diffstat (limited to 'sboinstall')
-rwxr-xr-x | sboinstall | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -142,7 +142,7 @@ my %locations = get_sbo_locations($build_queue); for my $sbo (@$build_queue) { next if $inst_names{$sbo}; - if (not $locations{$sbo} and in(@ARGV, $sbo)) { + if (not $locations{$sbo} and in($sbo, @ARGV)) { usage_error("Unable to locate $sbo in the SlackBuilds.org tree.") } if ($compat32) { |