You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
print("Using vendored toolchain: {}/{}/{} from {}".format(tool_name, version, platform, vendored_path))
43
+
44
+
# Symlink vendored directory into repository
45
+
ctx.symlink(vendored_path, tool_name)
46
+
returnNone# No download needed
47
+
else:
48
+
fail("OFFLINE MODE: Vendored toolchain not found at {}\nRun 'bazel run @vendored_toolchains//:export_to_third_party' to vendor toolchains first.".format(vendored_path))
49
+
50
+
# Online mode: download from mirror
27
51
# Get mirror configuration from environment (enterprise support)
0 commit comments