mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-04 22:40:12 +01:00
Make build directories under build/ subdir.
Otherwise, top-level dir gets very crowded.
This commit is contained in:
parent
39354f00b6
commit
c35de9ba77
5
build.py
5
build.py
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user