Merge #159 `use $basearch not $arch in livemedia tasks`

This commit is contained in:
Lubomír Sedlář 2016-02-18 13:56:15 +00:00
commit 71369c7690
1 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ class LiveMediaPhase(PhaseBase):
% (extra, variant.uid))
repo.append(translate_path(
self.compose,
self.compose.paths.compose.repository('$arch', v, create_dir=False)))
self.compose.paths.compose.repository('$basearch', v, create_dir=False)))
return repo
@ -76,7 +76,7 @@ class LiveMediaPhase(PhaseBase):
% (variant_uid, variant.uid))
return translate_path(
self.compose,
self.compose.paths.compose.os_tree('$arch', variant)
self.compose.paths.compose.os_tree('$basearch', variant)
)
def run(self):