Blender LTS: match download urls with latest changes in buildbot.

This commit is contained in:
Jeroen Bakker 2021-05-19 16:39:22 +02:00
parent 38450fc916
commit 0fa4286ade
1 changed files with 4 additions and 5 deletions

View File

@ -27,12 +27,11 @@ class Version:
def __str__(self) -> str:
return self.version
def get_download_file_names(version: Version):
yield f"blender-{version}-linux-x86_64.tar.xz"
yield f"blender-{version}-darwin-x86_64.dmg"
yield f"blender-{version}-windows-amd64.msi"
yield f"blender-{version}-windows-amd64.zip"
yield f"blender-{version}-linux-x64.tar.xz"
yield f"blender-{version}-macos-x64.dmg"
yield f"blender-{version}-windows-x64.msi"
yield f"blender-{version}-windows-x64.zip"
def get_download_url(version: Version, file_name: str) -> str: