Skip to content

Commit

Permalink
fix no libs error for docs
Browse files Browse the repository at this point in the history
  • Loading branch information
RichardFrangenberg committed Nov 2, 2023
1 parent 903c057 commit f231395
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Prism/Scripts/PrismCore.py
Expand Up @@ -72,7 +72,7 @@
if not prismLibs:
prismLibs = prismRoot

if not os.path.exists(os.path.join(prismLibs, "PythonLibs")):
if not os.path.exists(os.path.join(prismLibs, "PythonLibs")) and os.getenv("PRISM_NO_LIBS") != "1":
raise Exception('Prism: Couldn\'t find libraries. Set "PRISM_LIBS" to fix this.')

scriptPath = os.path.join(prismRoot, "Scripts")
Expand Down

0 comments on commit f231395

Please sign in to comment.