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 /sboupgrade | |
| parent | b6437cbb4c057abdedbeaf017048b1bb8ec72d42 (diff) | |
| download | sbotools2-953e3e79326c4f8b223cf92870563d43b34de356.tar.xz | |
Fix sanity checks in sboinstall, sboupgrade
Diffstat (limited to 'sboupgrade')
| -rwxr-xr-x | sboupgrade | 2 | 
1 files changed, 1 insertions, 1 deletions
@@ -118,7 +118,7 @@ for my $sbo (@sbos) {  	my $name = $sbo;  	$name =~ s/-compat32//;  	$locations{$sbo} = get_sbo_location($name); -	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 ($sbo =~ /-compat32$/) {  | 
