aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/versions/master/docs/external.md
diff options
context:
space:
mode:
Diffstat (limited to 'site/versions/master/docs/external.md')
-rw-r--r--site/versions/master/docs/external.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/site/versions/master/docs/external.md b/site/versions/master/docs/external.md
index 82b62584b3..ea487510ec 100644
--- a/site/versions/master/docs/external.md
+++ b/site/versions/master/docs/external.md
@@ -32,7 +32,7 @@ directory: to remove all external artifacts, use `bazel clean --expunge`.
By default, external dependencies are fetched as needed during `bazel build`. If
you would like to disable this behavior or prefetch dependencies, use
-[`bazel fetch`](http://bazel.io/docs/bazel-user-manual.html#fetch).
+[`bazel fetch`](http://bazel.build/docs/bazel-user-manual.html#fetch).
## Using Proxies
@@ -127,8 +127,8 @@ There are a few basic types of external dependencies that can be created.
If you have a second Bazel project that you'd like to use targets from, you can
use
-[`local_repository`](http://bazel.io/docs/be/workspace.html#local_repository)
-or [`http_archive`](http://bazel.io/docs/be/workspace.html#http_archive)
+[`local_repository`](http://bazel.build/docs/be/workspace.html#local_repository)
+or [`http_archive`](http://bazel.build/docs/be/workspace.html#http_archive)
to symlink it from the local filesystem or download it (respectively).
For example, suppose you are working on a project, `my-project/`, and you want
@@ -150,8 +150,8 @@ If your coworker has a target `//foo:bar`, your project can refer to it as
## Depending on non-Bazel projects
Rules prefixed with `new_` (e.g.,
-[`new_local_repository`](http://bazel.io/docs/be/workspace.html#new_local_repository)
-and [`new_http_archive`](http://bazel.io/docs/be/workspace.html#new_http_archive)
+[`new_local_repository`](http://bazel.build/docs/be/workspace.html#new_local_repository)
+and [`new_http_archive`](http://bazel.build/docs/be/workspace.html#new_http_archive)
) allow you to create targets from projects that do not use Bazel.
For example, suppose you are working on a project, `my-project/`, and you want