mirror of
https://github.com/openSUSE/osc.git
synced 2024-12-27 10:16:14 +01:00
find and list debian sources in build root
This commit is contained in:
parent
38446b0749
commit
e2524f036d
@ -207,7 +207,9 @@ def get_built_files(pacdir, pactype):
|
||||
b_built = subprocess.Popen(['find', os.path.join(pacdir, 'DEBS'),
|
||||
'-name', '*.deb'],
|
||||
stdout=subprocess.PIPE).stdout.read().strip()
|
||||
s_built = ''
|
||||
s_built = subprocess.Popen(['find', os.path.join(pacdir, 'SOURCES.DEB'),
|
||||
'-type', 'f'],
|
||||
stdout=subprocess.PIPE).stdout.read().strip()
|
||||
return s_built, b_built
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user