Skip to content

Commit

Permalink
Force refresh web cache
Browse files Browse the repository at this point in the history
  • Loading branch information
LucaScheller committed Nov 1, 2023
1 parent ebd85c1 commit 30ac74c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ To build the various resolvers, follow the instructions in the [install guide](h
To run the "Update Manager" simply run this snippet in the "Houdini Python Source Editor" panel:

import urllib,ssl
update_manager_url = 'https://raw.githubusercontent.com/LucaScheller/VFX-UsdAssetResolver/main/tools/update_manager.py'
update_manager_url = 'https://raw.githubusercontent.com/LucaScheller/VFX-UsdAssetResolver/main/tools/update_manager.py?token=$(date%20+%s)'
exec(urllib.request.urlopen(update_manager_url,context=ssl._create_unverified_context()).read(), globals(), locals())
run_houdini()

Expand Down
2 changes: 1 addition & 1 deletion docs/src/installation/automatic_install.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ In Houdini we simply need to open the "Python Source Editor" from the "Windows"
~~~admonish info title=""
```python
import urllib,ssl
update_manager_url = 'https://raw.githubusercontent.com/LucaScheller/VFX-UsdAssetResolver/main/tools/update_manager.py'
update_manager_url = 'https://raw.githubusercontent.com/LucaScheller/VFX-UsdAssetResolver/main/tools/update_manager.py?token=$(date%20+%s)'
exec(urllib.request.urlopen(update_manager_url,context=ssl._create_unverified_context()).read(), globals(), locals())
run_houdini()
```
Expand Down
2 changes: 1 addition & 1 deletion docs/src/overview.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
| <img src="https://raw.githubusercontent.com/LucaScheller/VFX-UsdAssetResolver/main/tools/UsdAssetResolver_Logo.svg" width="128"> | <h1> USD Asset Resolver </h1> |
| <img src="https://raw.githubusercontent.com/LucaScheller/VFX-UsdAssetResolver/main/tools/UsdAssetResolver_Logo.svg?token=$(date%20+%s)" width="128"> | <h1> USD Asset Resolver </h1> |
|--|--|

[![Deploy Documentation to GitHub Pages](https://github.com/LucaScheller/VFX-UsdAssetResolver/actions/workflows/mdbook.yml/badge.svg)](https://github.com/LucaScheller/VFX-UsdAssetResolver/actions/workflows/mdbook.yml)
Expand Down
2 changes: 1 addition & 1 deletion tools/update_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# To run, execute this in the Houdini Python Source Editor
"""
import urllib,ssl
update_manager_url = 'https://raw.githubusercontent.com/LucaScheller/VFX-UsdAssetResolver/main/tools/update_manager.py'
update_manager_url = 'https://raw.githubusercontent.com/LucaScheller/VFX-UsdAssetResolver/main/tools/update_manager.py?token=$(date +%s)'
exec(urllib.request.urlopen(update_manager_url,context=ssl._create_unverified_context()).read(), globals(), locals())
run_houdini()
"""
Expand Down

0 comments on commit 30ac74c

Please sign in to comment.