mirror of
https://github.com/openSUSE/osc.git
synced 2024-11-10 06:46:15 +01:00
build: fix finding of built packages in the end of the build
This commit is contained in:
parent
41c2524691
commit
46b12c1df1
@ -360,7 +360,7 @@ def main(argv):
|
||||
pacdirlink = os.path.join(config['build-root'], '.build.packages')
|
||||
if os.path.exists(pacdirlink):
|
||||
pacdirlink = os.readlink(pacdirlink)
|
||||
pacdir = os.path.join(config['build-root'] + pacdirlink)
|
||||
pacdir = os.path.join(config['build-root'], pacdirlink)
|
||||
|
||||
if os.path.exists(pacdir):
|
||||
(s_built, b_built) = get_built_files(pacdir, bi.pacsuffix)
|
||||
|
Loading…
Reference in New Issue
Block a user