Compare commits

...

2 Commits

Author SHA1 Message Date
John McQuah 08b4123493 katana-handle: uploaded photo 2024-04-27 20:55:48 +00:00
John McQuah e57593ca44 prt-auf: treat the remove command as a string, not a list 2024-03-22 00:01:26 +00:00
2 changed files with 1 additions and 1 deletions

BIN
photos/katana-handle.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 72 KiB

View File

@ -544,7 +544,7 @@ sub uninstall {
$opkg{rargs} .= " -r $altroot";
}
foreach my $t (@targets) {
($opkg{test} eq "no") ? system($PKGRM,$opkg{rargs},$t) : print "$PKGRM $opkg{rargs} $t\n";
($opkg{test} eq "no") ? system("$PKGRM $opkg{rargs} $t") : print "$PKGRM $opkg{rargs} $t\n";
next if ($?>>8 != 0);
push @removed, $t;
if (($LOCKED{$t}) and ($opkg{test} eq "no")) { port_unlock($t); }