Skip to content

Commit

Permalink
Fix symlink typo
Browse files Browse the repository at this point in the history
  • Loading branch information
LucaScheller committed Sep 23, 2023
1 parent 6210d6a commit 570e95b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/scripts/houdini.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def install_sidefx_houdini():
sidefx_service = create_sidefx_service(SIDEFX_CLIENT_ID, SIDEFX_CLIENT_SECRET_KEY)
sidefx_platform = get_sidefx_platform()
sidefx_product = "houdini"
print(sidefx_platform)

# Get release data
releases_list = sidefx_service.download.get_daily_builds_list(product=sidefx_product,
platform=sidefx_platform,
Expand Down Expand Up @@ -135,7 +135,7 @@ def install_sidefx_houdini():
raise Exception("Platform {platform} is currently not"
"supported!".format(platform=platform))
# Create version-less symlink
os.symlink(hfs_dir_path, hfs_version_less_dir_path)
os.symlink(hfs_dir_path, hfs_versionless_dir_path)


if __name__ == "__main__":
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/build_houdini.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Switch to latest release tag
run: |
git fetch --all --tags
$latest_release_tag=git tag -l --sort=-version:refname v*
git checkout tags/$latest_release_tag
#- name: Switch to latest release tag
# run: |
# git fetch --all --tags
# $latest_release_tag=git tag -l --sort=-version:refname v*
# git checkout tags/$latest_release_tag
- name: Install system packages
run: |
pip3 install requests
Expand Down

0 comments on commit 570e95b

Please sign in to comment.