diff --git a/site/docs/aquery.html b/site/docs/aquery.html index 1e68a98a474ec5..b574e841b694f9 100644 --- a/site/docs/aquery.html +++ b/site/docs/aquery.html @@ -54,7 +54,7 @@

Overview

$ bazel aquery 'deps(//some:label)' action 'Writing file some_file_name' Mnemonic: ... - Owner: ... + Target: ... Configuration: ... ActionKey: ... Inputs: [...] @@ -272,12 +272,17 @@

Comparing Aquery Outputs

command lines being run did not change. aquery_differ is the tool for that.

+

+ The tool is available in the [bazelbuild/bazel](https://github.com/bazelbuild/bazel/tree/master/tools/aquery_differ) repository. + To use it, clone the repository to your local machine. An example usage: +

+
-  bazel run //tools/aquery_differ -- \
+  $ bazel run //tools/aquery_differ -- \
   --before=/path/to/before.proto \
-  --after=/path/to/after.proto
-  --input_type=proto
-  --attrs=cmdline
+  --after=/path/to/after.proto \
+  --input_type=proto \
+  --attrs=cmdline \
   --attrs=inputs
 
@@ -382,6 +387,5 @@

Known Issues

Updates

- Aquery is a work in progress, and its API might change in the future. Please contact twerth@google.com and leba@google.com for any issue/feature request.