mirror of
https://github.com/openSUSE/osc.git
synced 2025-08-04 22:53:42 +02:00
build: fix finding of built packages in the end of the build
This commit is contained in:
@@ -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)
|
||||
|
Reference in New Issue
Block a user