Skip to content

Commit c4cb11f

Browse files
committed
Fix2 read_files.sh for Factory/base
followup from #307
1 parent 69cbb32 commit c4cb11f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

script/scriptgen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -660,7 +660,7 @@ def gen_read_files(self, f):
660660
if repodir.attrib.get("suffix"):
661661
suffix = repodir.attrib["suffix"]
662662
repopath = ""
663-
if "/" in self.folder:
663+
if "/" in self.folder or "/" in repodir.attrib["folder"]:
664664
repopath = self.ag.productpath + "/" + self.folder + "/*" + repodir.attrib["folder"] + "*" + suffix
665665
else:
666666
repopath = (

0 commit comments

Comments
 (0)