mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-06 04:42:43 +02:00
Error in variable name.
This commit is contained in:
parent
cec0cd658b
commit
b7f8e7802d
1 changed files with 3 additions and 3 deletions
|
@ -244,22 +244,22 @@ endif()
|
|||
print ('Downloading Qt from AWS')
|
||||
dest = os.path.join(self.path, 'installed')
|
||||
|
||||
url = 'NOT DEFINED'
|
||||
if platform.system() == 'Windows':
|
||||
url = 'https://hifi-qa.s3.amazonaws.com/qt5/Windows/qt5-install.tar.gz'
|
||||
elif platform.system() == 'Darwin':
|
||||
url = 'https://hifi-qa.s3.amazonaws.com/qt5/Mac/qt5-install.tar.gz'
|
||||
elif platform.system() == 'Linux':
|
||||
if platform.linux_distribution()[1] == '16.04':
|
||||
self.vcpkgUrl = 'https://hifi-qa.s3.amazonaws.com/qt5/Ubuntu/16.04/qt5-install.tar.gz'
|
||||
url = 'https://hifi-qa.s3.amazonaws.com/qt5/Ubuntu/16.04/qt5-install.tar.gz'
|
||||
elif platform.linux_distribution()[1] == '18.04':
|
||||
self.vcpkgUrl = "https://hifi-qa.s3.amazonaws.com/qt5/Ubuntu/18.04/qt5-install.tar.gz"
|
||||
url = "https://hifi-qa.s3.amazonaws.com/qt5/Ubuntu/18.04/qt5-install.tar.gz"
|
||||
else:
|
||||
print('UNKNOWN LINUX VERSION!!!')
|
||||
else:
|
||||
print('UNKNOWN OPERATING SYSTEM!!!')
|
||||
|
||||
print('Extracting ' + url + ' to ' + dest)
|
||||
|
||||
hifi_utils.downloadAndExtract(url, dest)
|
||||
else:
|
||||
print ('Qt has already been downloaded')
|
||||
|
|
Loading…
Reference in a new issue