1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-11-11 07:06:16 +01: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
commit d516560d47
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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: