Fix ARM name

This commit is contained in:
Mathieu Comandon 2016-10-18 13:05:27 -07:00
parent 1a778818de
commit 93b526509d

View file

@ -26,8 +26,8 @@ def get_arch():
return 'x86_64'
elif '86' in machine:
return 'i386'
elif 'arm7' in machine:
return 'arm7'
elif 'armv7' in machine:
return 'armv7'
class Runner(object):