Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build_usd: make AnimX download url a fixed hash #2938

Merged
merged 1 commit into from
Mar 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions build_scripts/build_usd.py
Original file line number Diff line number Diff line change
Expand Up @@ -1536,9 +1536,9 @@ def InstallEmbree(context, force, buildArgs):
############################################################
# AnimX

# This GitHub project has no releases, so we take the latest.
# As of 2023, there have been no commits since 2018.
ANIMX_URL = "https://github.com/Autodesk/animx/archive/refs/heads/master.zip"
# This GitHub project has no releases, so we fixed on the latest commit as of
# 2024-02-06 - 5db8ee4, which was committed on 2018-11-05
ANIMX_URL = "https://github.com/Autodesk/animx/archive/5db8ee416d5fa7050357f498d4dcfaa6ff3f7738.zip"

def InstallAnimX(context, force, buildArgs):
with CurrentWorkingDirectory(DownloadURL(ANIMX_URL, context, force)):
Expand Down
Loading