Skip to content

Commit

Permalink
Merge branch 'master' of github.com:webmin/webmin
Browse files Browse the repository at this point in the history
  • Loading branch information
jcameron committed Aug 31, 2024
2 parents da5c68a + 9966a2a commit c0a45fe
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion software/apt-lib.pl
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,9 @@ sub list_package_repos
'url' => $2,
'enabled' => !$1 };
my @w = split(/\s+/, $4);
$repo->{'name'} = join("/", @w);
my $type =
($l =~ /^(#*)\s*(deb-src)/) ? " ($2)" : "";
$repo->{'name'} = join("/", @w).$type;
$repo->{'id'} = $repo->{'url'}.$repo->{'name'};
push(@rv, $repo);
}
Expand Down

0 comments on commit c0a45fe

Please sign in to comment.