build: use python3 to download external binaries (#21184)

* build: use python3 to download external binaries

* Update config.py
This commit is contained in:
Samuel Attard 2019-11-19 06:08:20 -08:00 committed by John Kleinschmidt
parent 73467f00e3
commit d34ba76eb6
3 changed files with 13 additions and 4 deletions

View file

@ -21,6 +21,7 @@ BASE_URL = os.getenv('LIBCHROMIUMCONTENT_MIRROR') or \
PLATFORM = {
'cygwin': 'win32',
'darwin': 'darwin',
'linux': 'linux',
'linux2': 'linux',
'win32': 'win32',
}[sys.platform]