mirror of
https://github.com/openSUSE/osc.git
synced 2025-08-25 23:58:57 +02:00
Merge branch 'set_build_files_for_fissile' of https://github.com/jimmykarily/osc
Print built artifacts for a fissile build.
This commit is contained in:
@@ -349,6 +349,11 @@ def get_built_files(pacdir, buildtype):
|
|||||||
'-type', 'f'],
|
'-type', 'f'],
|
||||||
stdout=subprocess.PIPE).stdout.read().strip()
|
stdout=subprocess.PIPE).stdout.read().strip()
|
||||||
s_built = ''
|
s_built = ''
|
||||||
|
elif buildtype == 'fissile':
|
||||||
|
b_built = subprocess.Popen(['find', os.path.join(pacdir, 'FISSILE'),
|
||||||
|
'-type', 'f'],
|
||||||
|
stdout=subprocess.PIPE).stdout.read().strip()
|
||||||
|
s_built = ''
|
||||||
elif buildtype == 'dsc' or buildtype == 'collax':
|
elif buildtype == 'dsc' or buildtype == 'collax':
|
||||||
b_built = subprocess.Popen(['find', os.path.join(pacdir, 'DEBS'),
|
b_built = subprocess.Popen(['find', os.path.join(pacdir, 'DEBS'),
|
||||||
'-name', '*.deb'],
|
'-name', '*.deb'],
|
||||||
|
Reference in New Issue
Block a user