Simplify install()

This commit is contained in:
Daniel Berteaud 2018-12-06 11:53:14 +01:00
parent 2689084d74
commit 53477b36a3
1 changed files with 1 additions and 4 deletions

View File

@ -5,7 +5,4 @@ uninstallkey = []
def install():
print('Installing Apple Mobile Device Support')
if iswin64():
install_msi_if_needed("AppleMobileDeviceSupport64.msi")
else:
install_msi_if_needed("AppleMobileDeviceSupport.msi")
install_msi_if_needed('AppleMobileDeviceSupport64.msi' if iswin64() else 'AppleMobileDeviceSupport.msi')