Fix: Ошибка в параметре --url cl-builder-profile
master 3.7.3.7
root 1 year ago
parent 242863e85a
commit d9a4dc08ec

@ -1209,10 +1209,10 @@ class VariableClProfileData(ReadonlyTableVariable):
def get(self, hr=HumanReadable.No): def get(self, hr=HumanReadable.No):
try: try:
self.Get('cl_update_profile_url') self.Get(f'cl_{self.section}_profile_url')
except: except:
return [[]] return [[]]
if self.Get('cl_update_profile_url'): if self.Get(f'cl_{self.section}_profile_url'):
rep = self.Get(self.repository) rep = self.Get(self.repository)
if not rep: if not rep:
return [[]] return [[]]
@ -1222,7 +1222,9 @@ class VariableClProfileData(ReadonlyTableVariable):
repo_name = profiles[0].repository.repo_name repo_name = profiles[0].repository.repo_name
else: else:
full_path = self.Get('cl_profile_system') full_path = self.Get('cl_profile_system')
storage_path = self.Get('cl_update_repos_storage') storage_path = self.Get('update.cl_update_repos_storage')
if self.section == 'builder':
full_path = pathJoin('/', self.Get('cl_builder_path'), full_path)
if storage_path in full_path: if storage_path in full_path:
repo_name = full_path.split(storage_path)[1].replace('/', ' ').split()[0] repo_name = full_path.split(storage_path)[1].replace('/', ' ').split()[0]
profiles_desc = path.join(storage_path, repo_name, "profiles/profiles.desc") profiles_desc = path.join(storage_path, repo_name, "profiles/profiles.desc")

Loading…
Cancel
Save