We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15ede71 commit ba0a353Copy full SHA for ba0a353
clr_loader/util/find.py
@@ -42,7 +42,7 @@ def find_dotnet_root() -> Path:
42
prog_files = Path(prog_files)
43
dotnet_root = prog_files / "dotnet"
44
elif sys.platform == "darwin":
45
- if sys.maxsize > 2**32: # is_64bits
+ if sys.maxsize > 2**32: # is_64bits
46
dotnet_root = Path("/usr/local/share/dotnet/x64")
47
else:
48
dotnet_root = Path("/usr/local/share/dotnet")
doc/conf.py
@@ -6,7 +6,8 @@
6
7
# Add parent to path for autodoc
8
import sys, os
9
-sys.path.append(os.path.abspath('..'))
+
10
+sys.path.append(os.path.abspath(".."))
11
12
# autodoc_typehints = "both"
13
0 commit comments