1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-09-06 21:28:42 +02:00

Merge pull request #591 from adrianschroeter/simpleimage

fix typo in last commit fixing simpleimage support
This commit is contained in:
Marco Strigl
2019-06-27 16:47:14 +02:00
committed by GitHub

View File

@@ -376,7 +376,7 @@ def get_built_files(pacdir, buildtype):
s_built = ''
elif buildtype == 'simpleimage':
b_built = subprocess.Popen(['find', os.path.join(pacdir, 'SIMPLEIMAGE'),
'-type', '-f'],
'-type', 'f'],
stdout=subprocess.PIPE).stdout.read().strip()
s_built = ''
else: