Skip to content

Commit ef6922e

Browse files
committed
Fix3 read_files.sh for Factory/base
followup from #307
1 parent 05584fb commit ef6922e

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

script/scriptgen.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -692,12 +692,12 @@ def gen_read_files(self, f):
692692
done = ""
693693
if archs:
694694
wild = "*" + archs + "*"
695-
if " " in archs and self.repodirs:
696-
self.p("for arch in {}; do".format(archs), f)
697-
wild = "*$arch*"
698-
done = "done"
699-
700695
if "Leap" in self.ag.envdir or "Jump" in self.ag.envdir or self.version_from_media:
696+
if " " in archs and self.repodirs:
697+
self.p("for arch in {}; do".format(archs), f)
698+
wild = "*$arch*"
699+
done = "done"
700+
701701
for repodir in self.repodirs:
702702
self.p(
703703
cfg.read_files_repo_media,

xml/obs/openSUSE:Factory:zSystems.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<openQA
22
project_pattern="openSUSE:(?P&lt;version&gt;Factory):zSystems:ToTest"
33
dist_path="images/local"
4+
repo_path=""
45
distri="opensuse">
56
<flavor name="Tumbleweed-DVD" folder="*product*" iso="1" archs="s390x">
67
<repos>

0 commit comments

Comments
 (0)