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

Fix vagrant popen error

This commit is contained in:
Daniel Martí 2014-02-04 10:55:14 +01:00
parent b8e48f32f7
commit b8a841a7e4

View File

@ -124,8 +124,9 @@ def build_server(app, thisbuild, vcs, build_dir, output_dir, force):
shutil.rmtree('builder')
os.mkdir('builder')
p = FDroidPopen('vagrant --version', shell=True, stdout=subprocess.PIPE)
if p.stdout.startswith('Vagrant version 1.2'):
p = subprocess.Popen('vagrant --version', shell=True, stdout=subprocess.PIPE)
vver = p.communicate()[0]
if vver.startswith('Vagrant version 1.2'):
with open('builder/Vagrantfile', 'w') as vf:
vf.write('Vagrant.configure("2") do |config|\n')
vf.write('config.vm.box = "buildserver"\n')