1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-03 17:50:11 +02:00

Move config.buildserver.py into buildserver subdir

This commit is contained in:
Daniel Martí 2014-02-17 19:16:14 +01:00
parent 8e40b59c00
commit f6f23030e2
2 changed files with 2 additions and 1 deletions

View File

@ -244,7 +244,8 @@ def build_server(app, thisbuild, vcs, build_dir, output_dir, force):
ftp.put(os.path.join(serverpath, 'build.py'), 'build.py') ftp.put(os.path.join(serverpath, 'build.py'), 'build.py')
ftp.put(os.path.join(serverpath, 'common.py'), 'common.py') ftp.put(os.path.join(serverpath, 'common.py'), 'common.py')
ftp.put(os.path.join(serverpath, 'metadata.py'), 'metadata.py') ftp.put(os.path.join(serverpath, 'metadata.py'), 'metadata.py')
ftp.put(os.path.join(serverpath, '..', 'config.buildserver.py'), 'config.py') ftp.put(os.path.join(serverpath, '..', 'buildserver',
'config.buildserver.py'), 'config.py')
ftp.chmod('config.py', 0o600) ftp.chmod('config.py', 0o600)
# Copy the metadata - just the file for this app... # Copy the metadata - just the file for this app...