1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-05 18:50:09 +02:00

scanner: fix reformatting fail

This was broken by 44e8f425d :-(.
This commit is contained in:
Marcus Hoffmann 2018-07-25 18:05:04 +02:00
parent 797958c0b1
commit c44ab190bd

View File

@ -33,18 +33,18 @@ options = None
def get_gradle_compile_commands(build):
compileCommands = ['compile',
'provided'
'apk'
'implementation'
'api'
'compileOnly'
'provided',
'apk',
'implementation',
'api',
'compileOnly',
'runtimeOnly',
'releaseCompile'
'releaseProvided'
'releaseApk'
'releaseImplementation'
'releaseApi'
'releaseCompileOnly'
'releaseCompile',
'releaseProvided',
'releaseApk',
'releaseImplementation',
'releaseApi',
'releaseCompileOnly',
'releaseRuntimeOnly']
if build.gradle and build.gradle != ['yes']:
compileCommands += [flavor + 'Compile' for flavor in build.gradle]