treeinfo is not writing to paths

This commit is contained in:
Louis Abel 2022-06-30 03:06:29 -07:00
parent 49b001e31d
commit 2c3409de51
Signed by: label
GPG Key ID: B37E62D143879B36
2 changed files with 8 additions and 8 deletions

View File

@ -1005,7 +1005,7 @@ class RepoSync:
else:
self.log.warn(
'[' + Color.BOLD + Color.YELLOW + 'WARN' + Color.END + '] ' +
repo_name + ' ' + a + 'os .treeinfo already exists'
repo_name + ' ' + a + ' os .treeinfo already exists'
)
if not os.path.exists(os_disc_path):
@ -1018,7 +1018,7 @@ class RepoSync:
else:
self.log.warn(
'[' + Color.BOLD + Color.YELLOW + 'WARN' + Color.END + '] ' +
repo_name + ' ' + a + 'os .discinfo already exists'
repo_name + ' ' + a + ' os .discinfo already exists'
)
if not os.path.exists(os_media_path):
@ -1030,7 +1030,7 @@ class RepoSync:
else:
self.log.warn(
'[' + Color.BOLD + Color.YELLOW + 'WARN' + Color.END + '] ' +
repo_name + ' ' + a + 'os media.repo already exists'
repo_name + ' ' + a + ' os media.repo already exists'
)
if not self.ignore_debug:
@ -1068,7 +1068,7 @@ class RepoSync:
else:
self.log.warn(
'[' + Color.BOLD + Color.YELLOW + 'WARN' + Color.END + '] ' +
r + ' ' + a + 'debug .treeinfo already exists'
r + ' ' + a + ' debug .treeinfo already exists'
)
if not os.path.exists(debug_disc_path):
@ -1081,7 +1081,7 @@ class RepoSync:
else:
self.log.warn(
'[' + Color.BOLD + Color.YELLOW + 'WARN' + Color.END + '] ' +
r + ' ' + a + 'debug .discinfo already exists'
r + ' ' + a + ' debug .discinfo already exists'
)
if not os.path.exists(debug_media_path):
@ -1093,7 +1093,7 @@ class RepoSync:
else:
self.log.warn(
'[' + Color.BOLD + Color.YELLOW + 'WARN' + Color.END + '] ' +
repo_name + ' ' + a + 'debug media.repo already exists'
repo_name + ' ' + a + ' debug media.repo already exists'
)

View File

@ -72,8 +72,8 @@ class Shared:
variant.uid = repo
variant.name = repo
variant.type = "variant"
variant.repository = "."
variant.packages = "Packages"
variant.paths.repository = "."
variant.paths.packages = "Packages"
ti.variants.add(variant)
ti.dump(file_path)