aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/blog
diff options
context:
space:
mode:
authorGravatar Kristina Chodorow <kchodorow@google.com>2015-09-01 09:15:54 +0000
committerGravatar Lukacs Berki <lberki@google.com>2015-09-01 10:44:24 +0000
commit2b1763a46bc1eb67cde389525d86e7f678e7a704 (patch)
tree7f62654cd2f3b045bb5d05cfffccda2d253b5879 /site/blog
parentba4a85441bf08b44975ad410988efb69572fb61c (diff)
Change URLs to bazelbuild
-- MOS_MIGRATED_REVID=102022958
Diffstat (limited to 'site/blog')
-rw-r--r--site/blog/_posts/2015-04-06-Simplified-Workspace-Creation.md2
-rw-r--r--site/blog/_posts/2015-04-10-bash-completion.md4
-rw-r--r--site/blog/_posts/2015-07-08-Java-Configuration.md2
-rw-r--r--site/blog/_posts/2015-07-28-docker_build.md4
-rw-r--r--site/blog/_posts/2015-07-29-dashboard-dogfood.md2
5 files changed, 7 insertions, 7 deletions
diff --git a/site/blog/_posts/2015-04-06-Simplified-Workspace-Creation.md b/site/blog/_posts/2015-04-06-Simplified-Workspace-Creation.md
index e75ae06010..ea5a67b560 100644
--- a/site/blog/_posts/2015-04-06-Simplified-Workspace-Creation.md
+++ b/site/blog/_posts/2015-04-06-Simplified-Workspace-Creation.md
@@ -34,4 +34,4 @@ setting up your workspace.
Let us know if you have any questions or issues on the
[mailing list](https://groups.google.com/forum/#!forum/bazel-discuss) or
-[GitHub](https://github.com/google/bazel).
+[GitHub](https://github.com/bazelbuild/bazel).
diff --git a/site/blog/_posts/2015-04-10-bash-completion.md b/site/blog/_posts/2015-04-10-bash-completion.md
index 5ee45d0c6e..0a5d842fd7 100644
--- a/site/blog/_posts/2015-04-10-bash-completion.md
+++ b/site/blog/_posts/2015-04-10-bash-completion.md
@@ -28,7 +28,7 @@ command in your shell and see the list of possible completions.
If you are interested in supporting other shells, the script is made up
of two parts:
-1. [`scripts/bazel-complete-header.bash`](https://github.com/google/bazel/blob/master/scripts/bazel-complete-template.bash)
+1. [`scripts/bazel-complete-header.bash`](https://github.com/bazelbuild/bazel/blob/master/scripts/bazel-complete-template.bash)
is the completion logic.
2. `bazel info completion` dumps the list of commands of Bazel, their options
and for commands and options that expect a value, a description of what is
@@ -48,4 +48,4 @@ of two parts:
Let us know if you have any questions or issues on the
[mailing list](https://groups.google.com/forum/#!forum/bazel-discuss) or
-[GitHub](https://github.com/google/bazel).
+[GitHub](https://github.com/bazelbuild/bazel).
diff --git a/site/blog/_posts/2015-07-08-Java-Configuration.md b/site/blog/_posts/2015-07-08-Java-Configuration.md
index 858ca0c6fa..f9beef32e7 100644
--- a/site/blog/_posts/2015-07-08-Java-Configuration.md
+++ b/site/blog/_posts/2015-07-08-Java-Configuration.md
@@ -15,7 +15,7 @@ build --javacopt="-target 8"
However, the file would becomes quickly overloaded, especially if you take
all languages and options into account. Instead, you can tweak the
-[java_toolchain](https://github.com/google/bazel/tree/0e1680e58f01f3d443f7e68865b5a56b76c9dadf/tools/jdk/BUILD#L73)
+[java_toolchain](https://github.com/bazelbuild/bazel/tree/0e1680e58f01f3d443f7e68865b5a56b76c9dadf/tools/jdk/BUILD#L73)
rule that specifies the various options for the java compiler. So in a
BUILD file:
diff --git a/site/blog/_posts/2015-07-28-docker_build.md b/site/blog/_posts/2015-07-28-docker_build.md
index a1fd26ca5a..055c9cd32e 100644
--- a/site/blog/_posts/2015-07-28-docker_build.md
+++ b/site/blog/_posts/2015-07-28-docker_build.md
@@ -16,7 +16,7 @@ image. However, V1 Docker build suffers several issues:
Googlers working on [Google Container Registry](https://gcr.io) developed a support
for building reproducible Docker images using Skylark / Bazel that address these
-problems. We recently [shipped](https://github.com/google/bazel/commit/5f25891bb17d19cb1208ddad1e88cc4bb4a56782)
+problems. We recently [shipped](https://github.com/bazelbuild/bazel/commit/5f25891bb17d19cb1208ddad1e88cc4bb4a56782)
it.
Of course, it does not support `RUN` command, but the rule also strips
@@ -63,4 +63,4 @@ to fetch the various base image for the web and we are working on providing a
`docker_pull` rule to interact more fluently with existing images.
You can learn more about this docker support
-[here](https://github.com/google/bazel/blob/master/tools/build_defs/docker/README.md).
+[here](https://github.com/bazelbuild/bazel/blob/master/tools/build_defs/docker/README.md).
diff --git a/site/blog/_posts/2015-07-29-dashboard-dogfood.md b/site/blog/_posts/2015-07-29-dashboard-dogfood.md
index 9fdcbdb706..b9d8901d9d 100644
--- a/site/blog/_posts/2015-07-29-dashboard-dogfood.md
+++ b/site/blog/_posts/2015-07-29-dashboard-dogfood.md
@@ -28,7 +28,7 @@ http://localhost:8080/ (each build will print a unique URL to visit).
<img src="/assets/dash-shell.png"/>
-See [the README](https://github.com/google/bazel/blob/master/src/tools/dash/README.md)
+See [the README](https://github.com/bazelbuild/bazel/blob/master/src/tools/dash/README.md)
for documentation.
This is very much a work in progress. Please let us know if you have any