mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-30 20:34:38 +01:00
Fixed for package name
This commit is contained in:
parent
32f3112d0d
commit
606031581e
1 changed files with 2 additions and 1 deletions
|
@ -151,7 +151,8 @@ class Packages(Configs):
|
|||
""" Packages checksums. """
|
||||
md5 = Md5sum(self.flags)
|
||||
for package in self.binary_packages:
|
||||
pkg_checksum: str = self.bin_repo_dict[package][10]
|
||||
name: str = self.utils.split_binary_pkg(package[:-4])[0]
|
||||
pkg_checksum: str = self.bin_repo_dict[name][10]
|
||||
md5.check(self.tmp_slpkg, package, pkg_checksum)
|
||||
|
||||
def install_packages(self) -> None:
|
||||
|
|
Loading…
Add table
Reference in a new issue