aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google
diff options
context:
space:
mode:
authorGravatar Laurent Le Brun <laurentlb@google.com>2015-03-04 17:36:19 +0000
committerGravatar Han-Wen Nienhuys <hanwen@google.com>2015-03-05 18:30:02 +0000
commita1a29388d66ad3953367b18a4ae910f51db54e96 (patch)
tree3f472de02ce38ec7749a40281af693f618e5b104 /src/main/java/com/google
parent586638ffc70b5e9ff7e782be87962e19dba3f168 (diff)
Use the correct product name in Bazel command help
-- MOS_MIGRATED_REVID=87717872
Diffstat (limited to 'src/main/java/com/google')
-rw-r--r--src/main/java/com/google/devtools/build/lib/runtime/commands/analyze-profile.txt4
-rw-r--r--src/main/java/com/google/devtools/build/lib/runtime/commands/build.txt4
-rw-r--r--src/main/java/com/google/devtools/build/lib/runtime/commands/canonicalize.txt4
-rw-r--r--src/main/java/com/google/devtools/build/lib/runtime/commands/clean.txt4
-rw-r--r--src/main/java/com/google/devtools/build/lib/runtime/commands/help.txt2
-rw-r--r--src/main/java/com/google/devtools/build/lib/runtime/commands/info.txt14
-rw-r--r--src/main/java/com/google/devtools/build/lib/runtime/commands/query.txt8
-rw-r--r--src/main/java/com/google/devtools/build/lib/runtime/commands/run.txt8
-rw-r--r--src/main/java/com/google/devtools/build/lib/runtime/commands/startup_options.txt8
-rw-r--r--src/main/java/com/google/devtools/build/lib/runtime/commands/target-syntax.txt4
-rw-r--r--src/main/java/com/google/devtools/build/lib/runtime/commands/test.txt6
-rw-r--r--src/main/java/com/google/devtools/build/lib/runtime/commands/version.txt2
12 files changed, 34 insertions, 34 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/runtime/commands/analyze-profile.txt b/src/main/java/com/google/devtools/build/lib/runtime/commands/analyze-profile.txt
index 0ef55a86f1..fd855745df 100644
--- a/src/main/java/com/google/devtools/build/lib/runtime/commands/analyze-profile.txt
+++ b/src/main/java/com/google/devtools/build/lib/runtime/commands/analyze-profile.txt
@@ -1,10 +1,10 @@
-Usage: blaze %{command} <options> <profile-files> [<profile-file> ...]
+Usage: %{product} %{command} <options> <profile-files> [<profile-file> ...]
Analyzes build profile data for the given profile data files.
Analyzes each specified profile data file and prints the results. The
-input files must have been produced by the 'blaze build
+input files must have been produced by the '%{product} build
--profile=file' command.
By default, a summary of the analysis is printed. For post-processing
diff --git a/src/main/java/com/google/devtools/build/lib/runtime/commands/build.txt b/src/main/java/com/google/devtools/build/lib/runtime/commands/build.txt
index 5e8d88ae9c..a4f42b1700 100644
--- a/src/main/java/com/google/devtools/build/lib/runtime/commands/build.txt
+++ b/src/main/java/com/google/devtools/build/lib/runtime/commands/build.txt
@@ -1,9 +1,9 @@
-Usage: blaze %{command} <options> <targets>
+Usage: %{product} %{command} <options> <targets>
Builds the specified targets, using the options.
-See 'blaze help target-syntax' for details and examples on how to
+See '%{product} help target-syntax' for details and examples on how to
specify targets to build.
%{options}
diff --git a/src/main/java/com/google/devtools/build/lib/runtime/commands/canonicalize.txt b/src/main/java/com/google/devtools/build/lib/runtime/commands/canonicalize.txt
index 11541ff354..4067409755 100644
--- a/src/main/java/com/google/devtools/build/lib/runtime/commands/canonicalize.txt
+++ b/src/main/java/com/google/devtools/build/lib/runtime/commands/canonicalize.txt
@@ -1,7 +1,7 @@
-Usage: blaze canonicalize-flags <options> -- <options-to-canonicalize>
+Usage: %{product} canonicalize-flags <options> -- <options-to-canonicalize>
-Canonicalizes Blaze flags for the test and build commands. This command is
+Canonicalizes %{product} flags for the test and build commands. This command is
intended to be used for tools that wish to check if two lists of options have
the same effect at runtime.
diff --git a/src/main/java/com/google/devtools/build/lib/runtime/commands/clean.txt b/src/main/java/com/google/devtools/build/lib/runtime/commands/clean.txt
index 7633888ed6..866e3ec0f8 100644
--- a/src/main/java/com/google/devtools/build/lib/runtime/commands/clean.txt
+++ b/src/main/java/com/google/devtools/build/lib/runtime/commands/clean.txt
@@ -1,7 +1,7 @@
-Usage: blaze %{command} [<option> ...]
+Usage: %{product} %{command} [<option> ...]
-Removes Blaze-created output, including all object files, and Blaze
+Removes %{product}-created output, including all object files, and %{product}
metadata.
If '--expunge' is specified, the entire working tree will be removed
diff --git a/src/main/java/com/google/devtools/build/lib/runtime/commands/help.txt b/src/main/java/com/google/devtools/build/lib/runtime/commands/help.txt
index a2040c81ca..471086f5a5 100644
--- a/src/main/java/com/google/devtools/build/lib/runtime/commands/help.txt
+++ b/src/main/java/com/google/devtools/build/lib/runtime/commands/help.txt
@@ -1,5 +1,5 @@
-Usage: blaze help [<command>]
+Usage: %{product} help [<command>]
Prints a help page for the given command, or, if no command is
specified, prints the index of available commands.
diff --git a/src/main/java/com/google/devtools/build/lib/runtime/commands/info.txt b/src/main/java/com/google/devtools/build/lib/runtime/commands/info.txt
index 9c8b552947..53aac0ad1a 100644
--- a/src/main/java/com/google/devtools/build/lib/runtime/commands/info.txt
+++ b/src/main/java/com/google/devtools/build/lib/runtime/commands/info.txt
@@ -1,23 +1,23 @@
-Usage: blaze info <options> [key]
+Usage: %{product} info <options> [key]
-Displays information about the state of the blaze process in the
+Displays information about the state of the %{product} process in the
form of several "key: value" pairs. This includes the locations of
several output directories. Because some of the
-values are affected by the options passed to 'blaze build', the
+values are affected by the options passed to '%{product} build', the
info command accepts the same set of options.
-A single non-option argument may be specified (e.g. "blaze-bin"), in
+A single non-option argument may be specified (e.g. "%{product}-bin"), in
which case only the value for that key will be printed.
If --show_make_env is specified, the output includes the set of key/value
pairs in the "Make" environment, accessible within BUILD files.
The full list of keys and the meaning of their values is documented in
-the Blaze User Manual, and can be programmatically obtained with
-'blaze help info-keys'.
+the %{product} User Manual, and can be programmatically obtained with
+'%{product} help info-keys'.
-See also 'blaze version' for more detailed blaze version
+See also '%{product} version' for more detailed %{product} version
information.
%{options}
diff --git a/src/main/java/com/google/devtools/build/lib/runtime/commands/query.txt b/src/main/java/com/google/devtools/build/lib/runtime/commands/query.txt
index ce10211cc9..5f84590beb 100644
--- a/src/main/java/com/google/devtools/build/lib/runtime/commands/query.txt
+++ b/src/main/java/com/google/devtools/build/lib/runtime/commands/query.txt
@@ -1,19 +1,19 @@
-Usage: blaze %{command} <options> <query-expression>
+Usage: %{product} %{command} <options> <query-expression>
Executes a query language expression over a specified subgraph of the
build dependency graph.
For example, to show all C++ test rules in the strings package, use:
- % blaze query 'kind("cc_.*test", strings:*)'
+ % %{product} query 'kind("cc_.*test", strings:*)'
or to find all dependencies of chubby lockserver, use:
- % blaze query 'deps(//path/to/package:target)'
+ % %{product} query 'deps(//path/to/package:target)'
or to find a dependency path between //path/to/package:target and //dependency:
- % blaze query 'somepath(//path/to/package:target, //dependency)'
+ % %{product} query 'somepath(//path/to/package:target, //dependency)'
%{options}
diff --git a/src/main/java/com/google/devtools/build/lib/runtime/commands/run.txt b/src/main/java/com/google/devtools/build/lib/runtime/commands/run.txt
index 57283d50d0..a9e2276d6e 100644
--- a/src/main/java/com/google/devtools/build/lib/runtime/commands/run.txt
+++ b/src/main/java/com/google/devtools/build/lib/runtime/commands/run.txt
@@ -1,12 +1,12 @@
-Usage: blaze %{command} <options> -- <binary target> <flags to binary>
+Usage: %{product} %{command} <options> -- <binary target> <flags to binary>
Build the specified target and run it with the given arguments.
'run' accepts any 'build' options, and will inherit any defaults
-provided by .blazerc.
+provided by .%{product}rc.
-If your script needs stdin or execution not constrained by the Blaze lock,
-use 'blaze run --script_path' to write a script and then execute it.
+If your script needs stdin or execution not constrained by the %{product} lock,
+use '%{product} run --script_path' to write a script and then execute it.
%{options}
diff --git a/src/main/java/com/google/devtools/build/lib/runtime/commands/startup_options.txt b/src/main/java/com/google/devtools/build/lib/runtime/commands/startup_options.txt
index 5414707d0a..fb62fdbf27 100644
--- a/src/main/java/com/google/devtools/build/lib/runtime/commands/startup_options.txt
+++ b/src/main/java/com/google/devtools/build/lib/runtime/commands/startup_options.txt
@@ -2,13 +2,13 @@
Startup options
===============
-These options affect how Blaze starts up, or more specifically, how
-the virtual machine hosting Blaze starts up, and how the Blaze server
-starts up. These options must be specified to the left of the Blaze
+These options affect how %{product} starts up, or more specifically, how
+the virtual machine hosting %{product} starts up, and how the %{product} server
+starts up. These options must be specified to the left of the %{product}
command (e.g. 'build'), and they must not contain any space between
option name and value.
Example:
- % blaze --host_jvm_args=-Xmx1400m --output_base=/tmp/foo build //base
+ % %{product} --host_jvm_args=-Xmx1400m --output_base=/tmp/foo build //base
%{options}
diff --git a/src/main/java/com/google/devtools/build/lib/runtime/commands/target-syntax.txt b/src/main/java/com/google/devtools/build/lib/runtime/commands/target-syntax.txt
index 686135f593..b2d7df8a56 100644
--- a/src/main/java/com/google/devtools/build/lib/runtime/commands/target-syntax.txt
+++ b/src/main/java/com/google/devtools/build/lib/runtime/commands/target-syntax.txt
@@ -58,11 +58,11 @@ Subtractive patterns:
subtracted from the set of targets accumulated by preceding
patterns. (Note that this means order matters.) For example:
- % blaze build -- foo/... -foo/contrib/...
+ % %{product} build -- foo/... -foo/contrib/...
builds everything in 'foo', except 'contrib'. In case a target not
under 'contrib' depends on something under 'contrib' though, in order to
- build the former blaze has to build the latter too. As usual, the '--' is
+ build the former %{product} has to build the latter too. As usual, the '--' is
required to prevent '-f' from being interpreted as an option.
%{options}
diff --git a/src/main/java/com/google/devtools/build/lib/runtime/commands/test.txt b/src/main/java/com/google/devtools/build/lib/runtime/commands/test.txt
index a1f0523e2b..17f8b01669 100644
--- a/src/main/java/com/google/devtools/build/lib/runtime/commands/test.txt
+++ b/src/main/java/com/google/devtools/build/lib/runtime/commands/test.txt
@@ -1,15 +1,15 @@
-Usage: blaze %{command} <options> <test-targets>
+Usage: %{product} %{command} <options> <test-targets>
Builds the specified targets and runs all test targets among them (test targets
might also need to satisfy provided tag, size or language filters) using
the specified options.
This command accepts all valid options to 'build', and inherits
-defaults for 'build' from your .blazerc. If you don't use .blazerc,
+defaults for 'build' from your .%{product}rc. If you don't use .%{product}rc,
don't forget to pass all your 'build' options to '%{command}' too.
-See 'blaze help target-syntax' for details and examples on how to
+See '%{product} help target-syntax' for details and examples on how to
specify targets.
%{options}
diff --git a/src/main/java/com/google/devtools/build/lib/runtime/commands/version.txt b/src/main/java/com/google/devtools/build/lib/runtime/commands/version.txt
index 10e1df76cf..2885f22501 100644
--- a/src/main/java/com/google/devtools/build/lib/runtime/commands/version.txt
+++ b/src/main/java/com/google/devtools/build/lib/runtime/commands/version.txt
@@ -1,3 +1,3 @@
-Prints the version information that was embedded when blaze was built.
+Prints the version information that was embedded when %{product} was built.
%{options}