mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-02-07 08:46:21 +01:00
Updated for var
This commit is contained in:
parent
1564e34a7e
commit
0dbd63ffdb
1 changed files with 3 additions and 3 deletions
|
@ -49,16 +49,16 @@ class InstallData(Configs):
|
||||||
]
|
]
|
||||||
sbo_table = SBoTable
|
sbo_table = SBoTable
|
||||||
sbo_name: str = self.repos.sbo_repo_name
|
sbo_name: str = self.repos.sbo_repo_name
|
||||||
path: Path = Path(self.repos.sbo_repo_path, self.repos.sbo_repo_slackbuilds)
|
path_slackbuilds: Path = Path(self.repos.sbo_repo_path, self.repos.sbo_repo_slackbuilds)
|
||||||
path_changelog: Path = Path(self.repos.sbo_repo_path, self.repos.sbo_repo_changelog)
|
path_changelog: Path = Path(self.repos.sbo_repo_path, self.repos.sbo_repo_changelog)
|
||||||
|
|
||||||
if self.repos.ponce_repo:
|
if self.repos.ponce_repo:
|
||||||
sbo_table = PonceTable
|
sbo_table = PonceTable
|
||||||
sbo_name: str = self.repos.ponce_repo_name
|
sbo_name: str = self.repos.ponce_repo_name
|
||||||
path = Path(self.repos.ponce_repo_path, self.repos.ponce_repo_slackbuilds)
|
path_slackbuilds = Path(self.repos.ponce_repo_path, self.repos.ponce_repo_slackbuilds)
|
||||||
path_changelog: Path = Path(self.repos.ponce_repo_path, self.repos.ponce_repo_changelog)
|
path_changelog: Path = Path(self.repos.ponce_repo_path, self.repos.ponce_repo_changelog)
|
||||||
|
|
||||||
slackbuilds_txt: list = self.utils.read_file(path)
|
slackbuilds_txt: list = self.utils.read_file(path_slackbuilds)
|
||||||
|
|
||||||
cache: list = [] # init cache
|
cache: list = [] # init cache
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue