Skip to content

Commit

Permalink
Fix Windows env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
LucaScheller committed Oct 8, 2023
1 parent 8188ab6 commit 4e19d83
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/src/resolvers/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ export TF_DEBUG=AR_RESOLVER_INIT # Debug Logs
# Windows
set REPO_ROOT=<InsertPathToRootFolder>
set RESOLVER_NAME=<InsertResolverName> # E.g. fileResolver
set PYTHONPATH=%REPO_ROOT%/dist/%RESOLVER_NAME%/lib/python:%PYTHONPATH%
set PXR_PLUGINPATH_NAME=%REPO_ROOT%/dist/%RESOLVER_NAME%/resources:%PXR_PLUGINPATH_NAME%
set PATH=%REPO_ROOT%/dist/%RESOLVER_NAME%/lib:%PATH%
set PYTHONPATH=%REPO_ROOT%\dist\%RESOLVER_NAME%\lib\python;%PYTHONPATH%
set PXR_PLUGINPATH_NAME=%REPO_ROOT%\dist\%RESOLVER_NAME%\resources;%PXR_PLUGINPATH_NAME%
set PATH=%REPO_ROOT%\dist\%RESOLVER_NAME%\lib;%PATH%
set TF_DEBUG=AR_RESOLVER_INIT # Debug Logs
```
~~~
Expand Down

0 comments on commit 4e19d83

Please sign in to comment.