Buildbot: Fix wrong builder name check

This commit is contained in:
Sergey Sharybin 2015-12-03 16:15:37 +05:00
parent 27e7c78bae
commit f0d405ec67
2 changed files with 2 additions and 2 deletions

View File

@ -183,7 +183,7 @@ else:
chroot_name = 'buildbot_squeeze_x86_64'
bits = 64
blender_arch = 'x86_64'
elif builder.endswith('i686_cmake'):
elif builder.endswith('i386_cmake'):
chroot_name = 'buildbot_squeeze_i686'
bits = 32
blender_arch = 'i686'

View File

@ -41,7 +41,7 @@ if "cmake" in builder:
if builder.endswith('x86_64_cmake'):
chroot_name = 'buildbot_squeeze_x86_64'
elif builder.endswith('i686_cmake'):
elif builder.endswith('i386_cmake'):
chroot_name = 'buildbot_squeeze_i686'
if chroot_name:
chroot_prefix = ['schroot', '-c', chroot_name, '--']