1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-17 10:40:12 +02:00

Make build directories under build/ subdir.

Otherwise, top-level dir gets very crowded.
This commit is contained in:
Paul Sokolovsky 2011-06-17 00:13:22 +03:00
parent 39354f00b6
commit c35de9ba77

View File

@ -56,6 +56,9 @@ if options.clean:
if not os.path.exists(built_dir):
os.mkdir(built_dir)
if not os.path.isdir('build'):
os.makedirs('build')
for app in apps:
if app['disabled']:
@ -69,7 +72,7 @@ for app in apps:
print "Processing " + app['id']
build_dir = 'build_' + app['id']
build_dir = 'build/' + app['id']
got_source = False