mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
proper python environments
This commit is contained in:
parent
f7d943bec7
commit
8df840995e
42 changed files with 302 additions and 81 deletions
|
|
@ -88,7 +88,10 @@ elif sys.platform == "win32":
|
|||
build_dir = Path(os.path.dirname(__file__)).parent / "build" / build_dir
|
||||
|
||||
_print(f"Using build at {build_dir}", 2)
|
||||
assert build_dir.exists(), "Build directory doesn't exist"
|
||||
if not build_dir.exists():
|
||||
_print("Build directory doesn't exist", 1)
|
||||
_print("Probably freezing of code failed. Check ./build/build.log", 3)
|
||||
sys.exit(1)
|
||||
|
||||
deps_dir = build_dir / "dependencies"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue