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

View File

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