1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-11-10 14:56:14 +01:00

fix typo in last commit fixing simpleimage support

This commit is contained in:
Adrian Schröter 2019-06-27 15:42:28 +02:00
parent 704c495dca
commit 72b96b7d39

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: